* Build optimizations, simplify dependancy tree * Build optimizations, simplify dependancy tree
17 lines
431 B
CMake
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
|
|
)
|