2018-02-14 14:26:28 +01:00
|
|
|
# This file is part of the Flowee project
|
2023-03-20 19:46:37 +01:00
|
|
|
# Copyright (C) 2018-2023 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-12-09 23:38:19 +01:00
|
|
|
add_subdirectory(crypto)
|
2018-02-15 18:06:38 +01:00
|
|
|
add_subdirectory(interfaces)
|
2018-02-10 14:59:45 +01:00
|
|
|
add_subdirectory(networkmanager)
|
2020-04-17 19:33:06 +02:00
|
|
|
add_subdirectory(p2p)
|
2022-12-09 23:38:19 +01:00
|
|
|
add_subdirectory(secp256k1)
|
|
|
|
|
add_subdirectory(utils)
|
2018-05-09 10:43:50 +02:00
|
|
|
add_subdirectory(utxo)
|
2019-05-07 20:53:22 +02:00
|
|
|
|
2022-08-20 18:24:55 +02:00
|
|
|
if (${Qt6Core_FOUND})
|
2019-05-07 20:53:22 +02:00
|
|
|
add_subdirectory(apputils)
|
2022-09-09 18:08:03 +02:00
|
|
|
if (${Qt6Network_FOUND})
|
|
|
|
|
add_subdirectory(httpengine)
|
|
|
|
|
endif ()
|
2019-05-07 20:53:22 +02:00
|
|
|
endif ()
|
2020-07-05 16:14:50 +02:00
|
|
|
|
|
|
|
|
# cmake install file
|
|
|
|
|
install(FILES
|
2022-09-16 17:36:43 +02:00
|
|
|
${CMAKE_SOURCE_DIR}/support/cmake/flowee-config.cmake
|
2022-12-09 23:38:19 +01:00
|
|
|
${CMAKE_BINARY_DIR}/libs/secp256k1/secp256k1.cmake
|
2022-09-16 17:36:43 +02:00
|
|
|
DESTINATION cmake)
|