CMakeLists.txt raw
1 # Copyright (c) 2023-present The Bitcoin Core developers
2 # Distributed under the MIT software license, see the accompanying
3 # file COPYING or https://opensource.org/license/mit/.
4
5 add_library(bitcoin_zmq STATIC EXCLUDE_FROM_ALL
6 zmqabstractnotifier.cpp
7 zmqnotificationinterface.cpp
8 zmqpublishnotifier.cpp
9 zmqrpc.cpp
10 zmqutil.cpp
11 )
12 target_compile_definitions(bitcoin_zmq
13 INTERFACE
14 ENABLE_ZMQ=1
15 )
16 target_link_libraries(bitcoin_zmq
17 PRIVATE
18 core_interface
19 univalue
20 zeromq
21 )
22