peerplays_migrated/libraries/plugins/witness/CMakeLists.txt

18 lines
431 B
CMake
Raw Permalink Normal View History

file(GLOB HEADERS "include/graphene/witness/*.hpp")
2015-06-08 15:50:35 +00:00
add_library( graphene_witness
witness.cpp
)
target_link_libraries( graphene_witness PRIVATE graphene_plugin )
2015-06-08 15:50:35 +00:00
target_include_directories( graphene_witness
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
install( TARGETS
graphene_witness
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)