23 lines
388 B
CMake
23 lines
388 B
CMake
#SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
#SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
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)
|
|
add_subdirectory(schema)
|