2015-07-13 19:41:50 +00:00
|
|
|
file(GLOB HEADERS "include/graphene/witness/*.hpp")
|
2015-06-08 15:50:35 +00:00
|
|
|
|
|
|
|
|
add_library( graphene_witness
|
|
|
|
|
witness.cpp
|
|
|
|
|
)
|
|
|
|
|
|
2020-11-12 14:08:25 +00:00
|
|
|
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" )
|
2015-08-03 15:11:27 +00:00
|
|
|
|
|
|
|
|
install( TARGETS
|
|
|
|
|
graphene_witness
|
|
|
|
|
|
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
|
)
|