2015-06-08 15:50:35 +00:00
|
|
|
file(GLOB HEADERS "include/graphene/db/*.hpp")
|
2020-10-26 22:02:22 +00:00
|
|
|
|
|
|
|
|
set( GRAPHENE_DB_FILES
|
|
|
|
|
undo_database.cpp
|
|
|
|
|
index.cpp
|
|
|
|
|
object_database.cpp
|
|
|
|
|
${HEADERS}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if (NOT ${GRAPHENE_BUILD_DYNAMIC_LIBRARIES})
|
|
|
|
|
add_library( graphene_db ${GRAPHENE_DB_FILES} )
|
|
|
|
|
else()
|
|
|
|
|
add_library( graphene_db SHARED ${GRAPHENE_DB_FILES} )
|
|
|
|
|
endif()
|
|
|
|
|
|
2019-04-19 22:11:28 +00:00
|
|
|
target_link_libraries( graphene_db graphene_protocol fc )
|
2015-06-08 15:50:35 +00:00
|
|
|
target_include_directories( graphene_db PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
|
2015-08-03 15:11:27 +00:00
|
|
|
|
|
|
|
|
install( TARGETS
|
|
|
|
|
graphene_db
|
|
|
|
|
|
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
|
)
|
2016-03-17 22:08:27 +00:00
|
|
|
install( FILES ${HEADERS} DESTINATION "include/graphene/db" )
|