peerplays_migrated/libraries/plugins/debug_witness/CMakeLists.txt
serkixenos f532386567
Build optimizations (#403)
* Build optimizations, simplify dependancy tree

* Build optimizations, simplify dependancy tree
2020-11-12 19:38:25 +05:30

18 lines
493 B
CMake

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