diff options
author | Paweł Bylica <chfast@gmail.com> | 2017-08-22 22:37:27 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2017-08-22 22:45:57 +0800 |
commit | 15fd43f0357e1f3c6ec1262df6ee39b06a6fe3f9 (patch) | |
tree | b5b353813d9b0f97dcb67e089db1da87357259a1 /CMakeLists.txt | |
parent | 0dc73913e1b72e89ffdbf05592798d4bbfbf1714 (diff) | |
download | dexon-solidity-15fd43f0357e1f3c6ec1262df6ee39b06a6fe3f9.tar.gz dexon-solidity-15fd43f0357e1f3c6ec1262df6ee39b06a6fe3f9.tar.zst dexon-solidity-15fd43f0357e1f3c6ec1262df6ee39b06a6fe3f9.zip |
CMake: Fix linking with pthread
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a11c56ee..d204ffec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) |