10 lines
328 B
CMake
10 lines
328 B
CMake
|
|
file(GLOB HEADERS "include/graphene/delegate/*.hpp")
|
||
|
|
|
||
|
|
add_library( graphene_witness
|
||
|
|
witness.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries( graphene_witness graphene_chain graphene_app graphene_time )
|
||
|
|
target_include_directories( graphene_witness
|
||
|
|
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
|