33 lines
513 B
CMake
33 lines
513 B
CMake
#SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
#SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set(HEADERS
|
|
handler.h
|
|
info.h
|
|
env.h
|
|
register.h
|
|
login.h
|
|
poll.h
|
|
assets.h
|
|
addasset.h
|
|
deleteasset.h
|
|
updateasset.h
|
|
currencies.h
|
|
)
|
|
|
|
set(SOURCES
|
|
handler.cpp
|
|
info.cpp
|
|
env.cpp
|
|
register.cpp
|
|
login.cpp
|
|
poll.cpp
|
|
assets.cpp
|
|
addasset.cpp
|
|
deleteasset.cpp
|
|
updateasset.cpp
|
|
currencies.cpp
|
|
)
|
|
|
|
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})
|