summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2014-10-06 00:44:55 +0200
committerworktycho <work.tycho@gmail.com>2014-10-06 00:44:55 +0200
commita20bd0dbbd9c107a47049ce83f0b050384fd7b19 (patch)
tree71a0f58eee03411d44116aeb7a3f42b57223f39f
parentAdded a cEvent::Wait() with timeout. (diff)
downloadcuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.tar
cuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.tar.gz
cuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.tar.bz2
cuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.tar.lz
cuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.tar.xz
cuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.tar.zst
cuberite-a20bd0dbbd9c107a47049ce83f0b050384fd7b19.zip
-rw-r--r--src/OSSupport/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OSSupport/CMakeLists.txt b/src/OSSupport/CMakeLists.txt
index a42fcbed4..429949c59 100644
--- a/src/OSSupport/CMakeLists.txt
+++ b/src/OSSupport/CMakeLists.txt
@@ -39,6 +39,6 @@ if(NOT MSVC)
add_library(OSSupport ${SRCS} ${HDRS})
if(UNIX)
- target_link_libraries(OSSupport pthread)
+ target_link_libraries(OSSupport pthread rt)
endif()
endif()