diff options
author | worktycho <work.tycho@gmail.com> | 2014-10-06 00:44:55 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2014-10-06 00:44:55 +0200 |
commit | a20bd0dbbd9c107a47049ce83f0b050384fd7b19 (patch) | |
tree | 71a0f58eee03411d44116aeb7a3f42b57223f39f /src | |
parent | Added a cEvent::Wait() with timeout. (diff) | |
download | cuberite-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 |
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/CMakeLists.txt | 2 |
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() |