2023-12-30 19:42:11 -03:00
|
|
|
#SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
#SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-12-07 17:32:43 -03:00
|
|
|
set(HEADERS
|
2023-12-29 14:40:00 -03:00
|
|
|
interface.h
|
2023-12-22 20:25:20 -03:00
|
|
|
exceptions.h
|
2023-12-29 14:40:00 -03:00
|
|
|
pool.h
|
|
|
|
resource.h
|
2023-12-07 17:32:43 -03:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES
|
2023-12-29 14:40:00 -03:00
|
|
|
interface.cpp
|
2023-12-22 20:25:20 -03:00
|
|
|
exceptions.cpp
|
2023-12-29 14:40:00 -03:00
|
|
|
pool.cpp
|
|
|
|
resource.cpp
|
2023-12-07 17:32:43 -03:00
|
|
|
)
|
|
|
|
|
2023-12-11 20:29:55 -03:00
|
|
|
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
|
2023-12-07 17:32:43 -03:00
|
|
|
|
|
|
|
add_subdirectory(mysql)
|
2023-12-08 19:26:16 -03:00
|
|
|
add_subdirectory(migrations)
|