CMake: Fix linking with pthread

This commit is contained in:
Paweł Bylica
2017-08-22 16:45:57 +02:00
parent 0dc73913e1
commit 15fd43f035
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -15,6 +15,8 @@ project(solidity VERSION ${PROJECT_VERSION})
include(EthDependencies)
include(deps/jsoncpp.cmake)
find_package(Threads)
# Figure out what compiler and system are we using
include(EthCompilerSettings)
+1 -1
View File
@@ -2,7 +2,7 @@ file(GLOB sources "*.cpp")
file(GLOB headers "*.h")
add_library(devcore ${sources} ${headers})
target_link_libraries(devcore PRIVATE ${Boost_FILESYSTEM_LIBRARIES} ${Boost_REGEX_LIBRARIES} ${Boost_SYSTEM_LIBRARIES})
target_link_libraries(devcore PRIVATE ${Boost_FILESYSTEM_LIBRARIES} ${Boost_REGEX_LIBRARIES} ${Boost_SYSTEM_LIBRARIES} Threads::Threads)
target_include_directories(devcore SYSTEM PUBLIC ${Boost_INCLUDE_DIRS})
target_include_directories(devcore PRIVATE ..)
add_dependencies(devcore solidity_BuildInfo.h)