repo.or.cz
/
wireshark-sm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
decrypt drsuapi attributes
[wireshark-sm.git]
/
cmake
/
modules
/
FindSETCAP.cmake
blob
1c468bd69366e5af8943eac8ce011f05c9eea27d
1
#
2
# Look for the Linux setcap command (capabilities)
3
#
4
5
find_program( SETCAP_EXECUTABLE
6
NAMES
7
setcap
8
PATHS
9
/bin
10
/usr/bin
11
/usr/local/bin
12
/sbin
13
)
14
15
include( FindPackageHandleStandardArgs )
16
find_package_handle_standard_args( SETCAP DEFAULT_MSG SETCAP_EXECUTABLE )
17
18
mark_as_advanced( SETCAP_EXECUTABLE )
19