peerplays_migrated/libraries/plugins/witness/CMakeLists.txt
2020-11-06 02:57:27 +01: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
)