magpie/API/CMakeLists.txt

21 lines
320 B
CMake
Raw Normal View History

# 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
codes.h
finalaction.h
helpers.h
2023-11-24 23:48:01 +00:00
)
set(SOURCES
api.cpp
codes.cpp
finalaction.cpp
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-20 21:17:21 +00:00
add_subdirectory(requests)