mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-06 14:19:59 -05:00
23 lines
518 B
CMake
23 lines
518 B
CMake
# 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
|
|
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
|
|
)
|
|
|
|
target_link_libraries(bitcoin_ipc
|
|
PRIVATE
|
|
core_interface
|
|
univalue
|
|
)
|