aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/CMakeLists.txt
blob: 7cda130a43f54f1c47a8c4829c2d14c3afb21047 (plain) (blame)
1
2
3
4
5
6
7
8
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)