summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTycho Bickerstaff <work.tycho@gmail.com>2013-12-19 01:15:30 +0100
committerTycho Bickerstaff <work.tycho@gmail.com>2013-12-19 01:15:30 +0100
commite02fbd37ab987080ef4ab5623f59e268ba436713 (patch)
tree9b0f4ff34c2a28f0315fb5798680e3f64628914e
parentmoved protocol to glob (diff)
downloadcuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.tar
cuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.tar.gz
cuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.tar.bz2
cuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.tar.lz
cuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.tar.xz
cuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.tar.zst
cuberite-e02fbd37ab987080ef4ab5623f59e268ba436713.zip
-rw-r--r--src/OSSupport/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/OSSupport/CMakeLists.txt b/src/OSSupport/CMakeLists.txt
index 8eeff9d9b..497cd0ba3 100644
--- a/src/OSSupport/CMakeLists.txt
+++ b/src/OSSupport/CMakeLists.txt
@@ -8,3 +8,7 @@ file(GLOB SOURCE
)
add_library(OSSupport ${SOURCE})
+
+if(UNIX)
+ target_link_libraries(OSSupport pthread)
+endif()