pica/database/CMakeLists.txt

15 lines
209 B
CMake
Raw Normal View History

2023-12-07 20:32:43 +00:00
set(HEADERS
dbinterface.h
2023-12-22 23:25:20 +00:00
exceptions.h
2023-12-07 20:32:43 +00:00
)
set(SOURCES
dbinterface.cpp
2023-12-22 23:25:20 +00:00
exceptions.cpp
2023-12-07 20:32:43 +00:00
)
2023-12-11 23:29:55 +00:00
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
2023-12-07 20:32:43 +00:00
add_subdirectory(mysql)
2023-12-08 22:26:16 +00:00
add_subdirectory(migrations)