31 lines
470 B
CMake
31 lines
470 B
CMake
# 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
|
|
assets.h
|
|
currencies.h
|
|
addasset.h
|
|
deleteasset.h
|
|
)
|
|
|
|
set(SOURCES
|
|
request.cpp
|
|
test.cpp
|
|
post.cpp
|
|
register.cpp
|
|
login.cpp
|
|
poll.cpp
|
|
assets.cpp
|
|
currencies.cpp
|
|
addasset.cpp
|
|
deleteasset.cpp
|
|
)
|
|
|
|
target_sources(magpie PRIVATE ${SOURCES})
|