9 lines
289 B
CMake
9 lines
289 B
CMake
file( GLOB SOURCES "*.cpp" )
|
|
file( GLOB HEADERS "include/*.hpp" )
|
|
|
|
add_subdirectory( network )
|
|
|
|
add_library( sidechain STATIC ${SOURCES} ${HEADERS} )
|
|
|
|
target_link_libraries( sidechain fc graphene_chain )
|
|
target_include_directories( sidechain PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
|