2016-03-03 19:12:27 +00:00
|
|
|
file(GLOB HEADERS "include/graphene/debug_witness/*.hpp")
|
|
|
|
|
|
|
|
|
|
add_library( graphene_debug_witness
|
|
|
|
|
debug_api.cpp
|
|
|
|
|
debug_witness.cpp
|
|
|
|
|
)
|
|
|
|
|
|
2020-11-12 14:08:25 +00:00
|
|
|
target_link_libraries( graphene_debug_witness PRIVATE graphene_plugin )
|
2016-03-03 19:12:27 +00:00
|
|
|
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
|
|
|
|
|
)
|