13 lines
377 B
CMake
13 lines
377 B
CMake
|
|
file(GLOB HEADERS "include/graphene/db/*.hpp")
|
||
|
|
add_library( graphene_db undo_database.cpp index.cpp object_database.cpp ${HEADERS} )
|
||
|
|
target_link_libraries( graphene_db fc )
|
||
|
|
target_include_directories( graphene_db PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
|
||
|
|
|
||
|
|
install( TARGETS
|
||
|
|
graphene_db
|
||
|
|
|
||
|
|
RUNTIME DESTINATION bin
|
||
|
|
LIBRARY DESTINATION lib
|
||
|
|
ARCHIVE DESTINATION lib
|
||
|
|
)
|