aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonero-project <sempre.amaro@gmail.com>2014-05-05 20:14:41 -0400
committermonero-project <sempre.amaro@gmail.com>2014-05-05 20:14:41 -0400
commit9b7accb2579cfb06512b3f944494d2aafe891271 (patch)
treed21d9251748f4663060efb166945b0a83222103c
parentfix genesis block hash, checkpoint, days behind (diff)
parentfix CMakeLists.txt to add -lpthread, did not compile boost 1.55 (diff)
downloadmonero-9b7accb2579cfb06512b3f944494d2aafe891271.tar.xz
Merge pull request #1 from vertoe/master
fix CMakeLists.txt to add -lpthread, did not compile boost 1.55
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 69f0ef3eb..705513d66 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -96,7 +96,7 @@ if(MINGW)
elseif(APPLE)
set(Boost_LIBRARIES "${Boost_LIBRARIES}")
elseif(NOT MSVC)
- set(Boost_LIBRARIES "${Boost_LIBRARIES};rt")
+ set(Boost_LIBRARIES "${Boost_LIBRARIES};rt;pthread")
endif()
set(COMMIT_ID_IN_VERSION ON CACHE BOOL "Include commit ID in version")