All checks were successful
Main LMDBAL workflow / Test LMDBAL with qt5 (push) Successful in 1m16s
Main LMDBAL workflow / Test LMDBAL with qt6 (push) Successful in 1m39s
Main LMDBAL workflow / Builds documentation (push) Successful in 46s
Main LMDBAL workflow / Deploys documentation (push) Successful in 7s
31 lines
502 B
CMake
31 lines
502 B
CMake
set(SOURCES
|
|
exceptions.cpp
|
|
storagecommon.cpp
|
|
base.cpp
|
|
transaction.cpp
|
|
cursorcommon.cpp
|
|
session.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
base.h
|
|
exceptions.h
|
|
storage.h
|
|
storage.hpp
|
|
storagecommon.h
|
|
storagecommon.hpp
|
|
cursor.h
|
|
cursor.hpp
|
|
cursorcommon.h
|
|
cache.h
|
|
cache.hpp
|
|
operators.hpp
|
|
transaction.h
|
|
session.h
|
|
)
|
|
|
|
target_sources(${LMDBAL_NAME} PRIVATE ${SOURCES})
|
|
|
|
add_subdirectory(serializer)
|
|
|
|
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${LMDBAL_NAME_LOW})
|