mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-24 04:39:50 +00:00
12 lines
235 B
CMake
12 lines
235 B
CMake
include(FindPackageHandleStandardArgs)
|
|
|
|
find_program(SETCAP_EXECUTABLE
|
|
NAMES setcap
|
|
PATHS /bin /usr/bin /sbin /usr/sbin
|
|
)
|
|
|
|
find_package_handle_standard_args(SETCAP DEFAULT_MSG SETCAP_EXECUTABLE)
|
|
|
|
mark_as_advanced(SETCAP_EXECUTABLE)
|
|
|