2018-02-14 14:26:28 +01:00
|
|
|
# This file is part of the Flowee project
|
2021-02-17 22:49:19 +01:00
|
|
|
# Copyright (C) 2018-2021 Tom Zander <tom@flowee.org>
|
2018-02-14 14:26:28 +01:00
|
|
|
#
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2022-02-22 18:27:48 +01:00
|
|
|
include_directories(${LIBAPI_INCLUDES} ${CMAKE_BINARY_DIR}/include ..)
|
2020-10-25 23:43:42 +01:00
|
|
|
add_definitions(-DLOG_DEFAULT_SECTION=2500)
|
2018-02-10 14:59:45 +01:00
|
|
|
|
2022-02-22 18:27:48 +01:00
|
|
|
add_library(hub_api STATIC
|
2018-02-15 19:50:12 +01:00
|
|
|
APIRPCBinding.cpp
|
|
|
|
|
APIServer.cpp
|
2021-03-16 15:14:13 +01:00
|
|
|
HubApiServices.cpp
|
2019-03-10 12:53:44 +01:00
|
|
|
|
|
|
|
|
AddressMonitorService.cpp
|
2019-03-10 14:00:36 +01:00
|
|
|
BlockNotificationService.cpp
|
2021-03-16 19:53:14 +01:00
|
|
|
DoubleSpendService.cpp
|
2021-02-17 22:49:19 +01:00
|
|
|
NetProtect.cpp
|
2020-05-19 08:29:31 +02:00
|
|
|
TransactionMonitorService.cpp
|
2018-02-10 14:59:45 +01:00
|
|
|
)
|
|
|
|
|
|
2022-02-22 18:27:48 +01:00
|
|
|
target_link_libraries(hub_api hub_server flowee_networkmanager)
|