The ID types, object_id and object_id_type, were defined in the db library, and the protocol library depends on db to get these types. Technically, the ID types are defined by the protocol and used by the database, and not vice versa. Therefore these types should be in the protocol library, and db should depend on protocol to get them. This commit makes it so.
13 lines
457 B
CMake
13 lines
457 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 graphene_protocol 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
|
|
)
|
|
install( FILES ${HEADERS} DESTINATION "include/graphene/db" )
|