CMakeLists.txt raw
1 # Copyright (c) 2023-present The Limenka developers
2 # Distributed under the MIT software license, see the accompanying
3 # file COPYING or https://opensource.org/license/mit/.
4
5 add_library(limenka_ipc STATIC EXCLUDE_FROM_ALL
6 capnp/mining.cpp
7 capnp/protocol.cpp
8 interfaces.cpp
9 process.cpp
10 )
11
12 target_capnp_sources(limenka_ipc ${PROJECT_SOURCE_DIR}
13 capnp/common.capnp
14 capnp/echo.capnp
15 capnp/init.capnp
16 capnp/mining.capnp
17 )
18
19 target_link_libraries(limenka_ipc
20 PRIVATE
21 core_interface
22 univalue
23 )
24