2024-01-20 21:17:21 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
set(HEADERS
|
|
|
|
request.h
|
|
|
|
test.h
|
|
|
|
post.h
|
|
|
|
register.h
|
|
|
|
login.h
|
|
|
|
poll.h
|
2024-03-29 22:00:17 +00:00
|
|
|
assets.h
|
|
|
|
currencies.h
|
2024-01-20 21:17:21 +00:00
|
|
|
addasset.h
|
2024-01-21 19:22:56 +00:00
|
|
|
deleteasset.h
|
2024-01-20 21:17:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
request.cpp
|
|
|
|
test.cpp
|
|
|
|
post.cpp
|
|
|
|
register.cpp
|
|
|
|
login.cpp
|
|
|
|
poll.cpp
|
2024-03-29 22:00:17 +00:00
|
|
|
assets.cpp
|
|
|
|
currencies.cpp
|
2024-01-20 21:17:21 +00:00
|
|
|
addasset.cpp
|
2024-01-21 19:22:56 +00:00
|
|
|
deleteasset.cpp
|
2024-01-20 21:17:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_sources(magpie PRIVATE ${SOURCES})
|