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-13 20:33:11 +00:00
|
|
|
set(HEADERS
|
|
|
|
handler.h
|
|
|
|
info.h
|
|
|
|
env.h
|
2023-12-14 22:17:28 +00:00
|
|
|
register.h
|
2023-12-22 23:25:20 +00:00
|
|
|
login.h
|
2024-01-03 22:20:01 +00:00
|
|
|
poll.h
|
2024-03-29 21:57:45 +00:00
|
|
|
assets.h
|
2024-01-12 23:39:41 +00:00
|
|
|
addasset.h
|
2024-01-22 18:21:55 +00:00
|
|
|
deleteasset.h
|
2024-04-07 23:03:10 +00:00
|
|
|
updateasset.h
|
2024-03-29 21:57:45 +00:00
|
|
|
currencies.h
|
2023-12-13 20:33:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
handler.cpp
|
|
|
|
info.cpp
|
|
|
|
env.cpp
|
2023-12-14 22:17:28 +00:00
|
|
|
register.cpp
|
2023-12-22 23:25:20 +00:00
|
|
|
login.cpp
|
2024-01-03 22:20:01 +00:00
|
|
|
poll.cpp
|
2024-03-29 21:57:45 +00:00
|
|
|
assets.cpp
|
2024-01-12 23:39:41 +00:00
|
|
|
addasset.cpp
|
2024-01-21 19:23:48 +00:00
|
|
|
deleteasset.cpp
|
2024-04-07 23:03:10 +00:00
|
|
|
updateasset.cpp
|
2024-03-29 21:57:45 +00:00
|
|
|
currencies.cpp
|
2023-12-13 20:33:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
|