19 lines
261 B
CMake
19 lines
261 B
CMake
set(HEADERS
|
|
interface.h
|
|
exceptions.h
|
|
pool.h
|
|
resource.h
|
|
)
|
|
|
|
set(SOURCES
|
|
interface.cpp
|
|
exceptions.cpp
|
|
pool.cpp
|
|
resource.cpp
|
|
)
|
|
|
|
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
|
|
|
|
add_subdirectory(mysql)
|
|
add_subdirectory(migrations)
|