peerplays_migrated/libraries/plugins/witness/CMakeLists.txt
2021-12-15 16:36:40 +00:00

17 lines
431 B
CMake

file(GLOB HEADERS "include/graphene/witness/*.hpp")
add_library( graphene_witness
witness.cpp
)
target_link_libraries( graphene_witness PRIVATE graphene_plugin )
target_include_directories( graphene_witness
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
install( TARGETS
graphene_witness
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)