diff options
author | Brad King <brad.king@kitware.com> | 2016-09-12 13:31:29 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-09-12 13:31:29 (GMT) |
commit | 71a70c0e6c9aac54d61107fe9f1f1bf7c211821b (patch) | |
tree | 3580add7fbd58c54f4fd1a91e439d22365bb362a /Utilities | |
parent | 5088765a2c3620bc652db538ae0054941cc23406 (diff) | |
parent | c6d83a15d8ac11cba1388e853a9b321ca4e9c87a (diff) | |
download | CMake-71a70c0e6c9aac54d61107fe9f1f1bf7c211821b.zip CMake-71a70c0e6c9aac54d61107fe9f1f1bf7c211821b.tar.gz CMake-71a70c0e6c9aac54d61107fe9f1f1bf7c211821b.tar.bz2 |
Merge topic 'libuv-link-kvm'
c6d83a15 libuv: Link with kvm on NetBSD and OpenBSD
6a497bb0 libuv: Link with kvm on FreeBSD
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmlibuv/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Utilities/cmlibuv/CMakeLists.txt b/Utilities/cmlibuv/CMakeLists.txt index e25ac82..1b384b5 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 ) @@ -178,6 +181,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") endif() if(CMAKE_SYSTEM_NAME STREQUAL "NetBSD") + list(APPEND uv_libraries + kvm + ) list(APPEND uv_headers include/uv-bsd.h ) @@ -188,6 +194,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "NetBSD") endif() if(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD") + list(APPEND uv_libraries + kvm + ) list(APPEND uv_headers include/uv-bsd.h ) |