diff options
| author | Drew DeVault <sir@cmpwn.com> | 2017-06-06 09:34:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-06 09:34:01 -0400 |
| commit | fd47a30e75cccfc3789eafa4bfabd66f4696099b (patch) | |
| tree | 10c1529eb56235b303bdbca905e8b80dce47ae6d /CMakeLists.txt | |
| parent | 5ed533a94331ea2d849f900ee20f8932d742e9b5 (diff) | |
| parent | 7fef2830446e1f98a02f8d8a3bba866b7edd5bd0 (diff) | |
Merge pull request #1232 from johalun/master-freebsd
FreeBSD fixes
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ed45830..edf486ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,10 @@ find_package(GdkPixbuf) find_package(PAM) find_package(LibInput REQUIRED) -find_package(Libcap REQUIRED) + +if (CMAKE_SYSTEM_NAME STREQUAL Linux) + find_package(Libcap REQUIRED) +endif (CMAKE_SYSTEM_NAME STREQUAL Linux) if (CMAKE_SYSTEM_NAME STREQUAL FreeBSD) find_package(EpollShim REQUIRED) |
