aboutsummaryrefslogblamecommitdiffstats
path: root/libdevcore/CMakeLists.txt
blob: fa7e3f4899b2764fd2500ae054655460c0a521ad (plain) (tree)
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 jsoncpp ${Boost_FILESYSTEM_LIBRARIES} ${Boost_REGEX_LIBRARIES} ${Boost_SYSTEM_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(devcore PUBLIC "${CMAKE_SOURCE_DIR}")
target_include_directories(devcore SYSTEM PUBLIC ${Boost_INCLUDE_DIRS})
add_dependencies(devcore solidity_BuildInfo.h)