2023-03-21 11:05:54 +00:00
|
|
|
set(SOURCES
|
|
|
|
exceptions.cpp
|
|
|
|
storage.cpp
|
|
|
|
base.cpp
|
2023-10-17 21:06:11 +00:00
|
|
|
transaction.cpp
|
2023-03-21 11:05:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(HEADERS
|
|
|
|
base.h
|
|
|
|
exceptions.h
|
|
|
|
storage.h
|
|
|
|
storage.hpp
|
2023-08-05 20:13:43 +00:00
|
|
|
cursor.h
|
|
|
|
cursor.hpp
|
2023-03-21 11:05:54 +00:00
|
|
|
cache.h
|
|
|
|
cache.hpp
|
|
|
|
operators.hpp
|
2023-10-17 21:06:11 +00:00
|
|
|
transaction.h
|
2023-03-21 11:05:54 +00:00
|
|
|
)
|
|
|
|
|
2023-10-17 21:06:11 +00:00
|
|
|
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
|
2023-10-21 19:41:41 +00:00
|
|
|
|
|
|
|
add_subdirectory(serializer)
|
2023-03-21 11:05:54 +00:00
|
|
|
|
2023-03-22 16:30:41 +00:00
|
|
|
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_LOW})
|