0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-08 14:34:53 -05:00
bitcoin-core/src/ipc/CMakeLists.txt

24 lines
518 B
Text
Raw Normal View History

2024-08-06 18:23:24 +01:00
# Copyright (c) 2023-present The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or https://opensource.org/license/mit/.
add_library(bitcoin_ipc STATIC EXCLUDE_FROM_ALL
capnp/mining.cpp
2024-08-06 18:23:24 +01:00
capnp/protocol.cpp
interfaces.cpp
process.cpp
)
target_capnp_sources(bitcoin_ipc ${PROJECT_SOURCE_DIR}
capnp/common.capnp
capnp/echo.capnp
capnp/init.capnp
capnp/mining.capnp
2024-08-06 18:23:24 +01:00
)
target_link_libraries(bitcoin_ipc
PRIVATE
core_interface
univalue
2024-08-06 18:23:24 +01:00
)