2023-12-30 22:42:11 +00:00
|
|
|
#SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
#SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-12-07 20:32:43 +00:00
|
|
|
set(HEADERS
|
2023-12-29 17:40:00 +00:00
|
|
|
interface.h
|
2023-12-22 23:25:20 +00:00
|
|
|
exceptions.h
|
2023-12-29 17:40:00 +00:00
|
|
|
pool.h
|
|
|
|
resource.h
|
2023-12-07 20:32:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES
|
2023-12-29 17:40:00 +00:00
|
|
|
interface.cpp
|
2023-12-22 23:25:20 +00:00
|
|
|
exceptions.cpp
|
2023-12-29 17:40:00 +00:00
|
|
|
pool.cpp
|
|
|
|
resource.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)
|
2024-01-12 23:39:41 +00:00
|
|
|
add_subdirectory(schema)
|