diff options
author | Roger Leigh <rleigh@codelibre.net> | 2016-09-08 20:55:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-09 15:07:46 (GMT) |
commit | 6a497bb0a3a92ac13d637ee200db4d6cd43cb121 (patch) | |
tree | 7cd7d123f21fea726c1bb8d3163ed98247b4bd25 /Utilities/cmlibuv/CMakeLists.txt | |
parent | f506489d1ed222761f9ce752144a458290020e55 (diff) | |
download | CMake-6a497bb0a3a92ac13d637ee200db4d6cd43cb121.zip CMake-6a497bb0a3a92ac13d637ee200db4d6cd43cb121.tar.gz CMake-6a497bb0a3a92ac13d637ee200db4d6cd43cb121.tar.bz2 |
libuv: Link with kvm on FreeBSD
Add it unconditionally. It is present in FreeBSD 11, 10 and 9.
Diffstat (limited to 'Utilities/cmlibuv/CMakeLists.txt')
-rw-r--r-- | Utilities/cmlibuv/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Utilities/cmlibuv/CMakeLists.txt b/Utilities/cmlibuv/CMakeLists.txt index e25ac82..8837be6 100644 --- a/Utilities/cmlibuv/CMakeLists.txt +++ b/Utilities/cmlibuv/CMakeLists.txt @@ -168,6 +168,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") endif() if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") + list(APPEND uv_libraries + kvm + ) list(APPEND uv_headers include/uv-bsd.h ) |