aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore
diff options
context:
space:
mode:
authorPaweł Bylica <chfast@gmail.com>2017-08-17 17:56:49 +0800
committerPaweł Bylica <chfast@gmail.com>2017-08-18 19:32:36 +0800
commit0712e6302e728bba281f41afa74e6c74638a75c7 (patch)
tree927bd11e92801eeee6111820c9ca9c3407ca19d4 /libdevcore
parent397a72107abbe691d9e04dcb6bcc0eb2b2a583fb (diff)
downloaddexon-solidity-0712e6302e728bba281f41afa74e6c74638a75c7.tar.gz
dexon-solidity-0712e6302e728bba281f41afa74e6c74638a75c7.tar.zst
dexon-solidity-0712e6302e728bba281f41afa74e6c74638a75c7.zip
Boost: Use static libs
Diffstat (limited to 'libdevcore')
-rw-r--r--libdevcore/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdevcore/CMakeLists.txt b/libdevcore/CMakeLists.txt
index 7cda130a..4b15427f 100644
--- a/libdevcore/CMakeLists.txt
+++ b/libdevcore/CMakeLists.txt
@@ -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_SYSTEM_LIBRARIES})
+target_link_libraries(devcore PRIVATE ${Boost_FILESYSTEM_LIBRARIES} ${Boost_REGEX_LIBRARIES} ${Boost_SYSTEM_LIBRARIES})
target_include_directories(devcore SYSTEM PUBLIC ${Boost_INCLUDE_DIRS})
target_include_directories(devcore PRIVATE ..)
add_dependencies(devcore solidity_BuildInfo.h)