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
|
2024-07-16 12:38:12 -04:00
|
|
|
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}
|
2024-07-17 11:36:34 -04:00
|
|
|
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
|
2024-07-17 11:36:34 -04:00
|
|
|
univalue
|
2024-08-06 18:23:24 +01:00
|
|
|
)
|