2023-12-27 20:59:22 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-11-24 23:48:01 +00:00
|
|
|
set(HEADERS
|
|
|
|
api.h
|
2023-12-21 18:03:44 +00:00
|
|
|
codes.h
|
2023-12-26 23:31:55 +00:00
|
|
|
finalaction.h
|
2024-01-16 21:12:41 +00:00
|
|
|
helpers.h
|
2023-11-24 23:48:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
api.cpp
|
2023-12-21 18:03:44 +00:00
|
|
|
codes.cpp
|
2023-12-26 23:31:55 +00:00
|
|
|
finalaction.cpp
|
2024-01-16 21:12:41 +00:00
|
|
|
helpers.cpp
|
2023-11-24 23:48:01 +00:00
|
|
|
)
|
|
|
|
|
2023-12-03 14:39:48 +00:00
|
|
|
target_sources(magpie PRIVATE ${SOURCES})
|
2024-01-16 21:12:41 +00:00
|
|
|
|
|
|
|
add_subdirectory(models)
|