diff options
author | Paweł Bylica <chfast@gmail.com> | 2017-08-22 22:43:30 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2017-08-23 04:50:25 +0800 |
commit | 388fc983fa5480ec8498c399cf598991c63cfa22 (patch) | |
tree | 5fc1dd7ac4b2155ba26702d1026a039916229c40 /libdevcore | |
parent | 4974ff3962759a19150877b0e59e64319190ba1d (diff) | |
download | dexon-solidity-388fc983fa5480ec8498c399cf598991c63cfa22.tar.gz dexon-solidity-388fc983fa5480ec8498c399cf598991c63cfa22.tar.zst dexon-solidity-388fc983fa5480ec8498c399cf598991c63cfa22.zip |
CMake: Cleanup "local" include path
Diffstat (limited to 'libdevcore')
-rw-r--r-- | libdevcore/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdevcore/CMakeLists.txt b/libdevcore/CMakeLists.txt index 016d7ea3..b97866f4 100644 --- a/libdevcore/CMakeLists.txt +++ b/libdevcore/CMakeLists.txt @@ -4,5 +4,5 @@ file(GLOB headers "*.h") add_library(devcore ${sources} ${headers}) 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 ..) +target_include_directories(devcore PUBLIC "${CMAKE_SOURCE_DIR}") add_dependencies(devcore solidity_BuildInfo.h) |