aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Piersall <cody.piersall@gmail.com>2018-12-11 23:09:59 -0600
committerGarrett D'Amore <garrett@damore.org>2018-12-11 21:09:59 -0800
commit8961f34ca432a6d672b71330e7f82097926f6326 (patch)
tree3ac63a9acb67eabbe981a88a4480a1f1d78e6f29
parente65adefd7ddc55d5b66e82c9b875571641eedcf3 (diff)
downloadnng-8961f34ca432a6d672b71330e7f82097926f6326.tar.gz
nng-8961f34ca432a6d672b71330e7f82097926f6326.tar.bz2
nng-8961f34ca432a6d672b71330e7f82097926f6326.zip
The toplevel sets threads already, not needed here. (#810)
* The toplevel sets threads already, not needed here. * Don't overwrite NNG_LIBS list.
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index ab7a3cf6..c0380a0f 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -89,7 +89,7 @@ set (NNG_SRCS
if (NNG_PLATFORM_POSIX)
find_package (Threads REQUIRED)
- set(NNG_LIBS Threads::Threads)
+ list(APPEND NNG_LIBS Threads::Threads)
set (NNG_SRCS ${NNG_SRCS}
platform/posix/posix_impl.h