Files

33 lines
1.1 KiB
CMake
Raw Permalink Normal View History

# 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>
#
# 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 ..)
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
AddressMonitorService.cpp
2019-03-10 14:00:36 +01:00
BlockNotificationService.cpp
DoubleSpendService.cpp
2021-02-17 22:49:19 +01:00
NetProtect.cpp
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)