diff options
author | Paweł Bylica <chfast@gmail.com> | 2017-08-16 20:26:19 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2017-08-17 19:48:34 +0800 |
commit | 2a1b6b2e92edc1665eb1644f2ccf06c44e68448a (patch) | |
tree | 706c08ee3e5d58fd2a18e4890b55da1483e021f4 | |
parent | 83b90f3e8a3ee168ba00eff33c4443d00bbb8a57 (diff) | |
download | dexon-solidity-2a1b6b2e92edc1665eb1644f2ccf06c44e68448a.tar.gz dexon-solidity-2a1b6b2e92edc1665eb1644f2ccf06c44e68448a.tar.zst dexon-solidity-2a1b6b2e92edc1665eb1644f2ccf06c44e68448a.zip |
CMake: Simplify libdevcore config
-rw-r--r-- | libdevcore/CMakeLists.txt | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/libdevcore/CMakeLists.txt b/libdevcore/CMakeLists.txt index c4f886a6..7cda130a 100644 --- a/libdevcore/CMakeLists.txt +++ b/libdevcore/CMakeLists.txt @@ -1,14 +1,8 @@ -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB") - -aux_source_directory(. SRC_LIST) - -set(EXECUTABLE soldevcore) - -file(GLOB HEADERS "*.h") - -include_directories(..) -add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) - -eth_use(${EXECUTABLE} REQUIRED Dev::base) - -install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) +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_include_directories(devcore SYSTEM PUBLIC ${Boost_INCLUDE_DIRS}) +target_include_directories(devcore PRIVATE ..) +add_dependencies(devcore solidity_BuildInfo.h) |