2023-03-21 11:05:54 +00:00
|
|
|
set(SOURCES
|
|
|
|
exceptions.cpp
|
|
|
|
storage.cpp
|
|
|
|
base.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
serializer.h
|
|
|
|
serializer.hpp
|
|
|
|
serializer_uint8.hpp
|
|
|
|
serializer_uint16.hpp
|
|
|
|
serializer_uint32.hpp
|
|
|
|
serializer_uint64.hpp
|
|
|
|
serializer_int8.hpp
|
|
|
|
serializer_int16.hpp
|
|
|
|
serializer_int32.hpp
|
|
|
|
serializer_int64.hpp
|
|
|
|
serializer_float.hpp
|
|
|
|
serializer_double.hpp
|
|
|
|
serializer_stdstring.hpp
|
|
|
|
serializer_qstring.hpp
|
|
|
|
serializer_qbytearray.hpp
|
|
|
|
operators.hpp
|
|
|
|
)
|
|
|
|
|
2023-03-22 16:30:41 +00:00
|
|
|
target_sources(${PROJECT_NAME} PRIVATE
|
2023-03-21 11:05:54 +00:00
|
|
|
${SOURCES}
|
|
|
|
${HEADERS}
|
|
|
|
)
|
|
|
|
|
2023-03-22 16:30:41 +00:00
|
|
|
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_LOW})
|