Skip to content

Commit

Permalink
zmq: add initial cmake support
Browse files Browse the repository at this point in the history
  • Loading branch information
aleflm committed Dec 15, 2024
1 parent 36ef8ae commit 3245d44
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/zmq/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright (c) 2023-present The firo Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or https://opensource.org/license/mit/.

add_library(firo_zmq STATIC EXCLUDE_FROM_ALL
zmqabstractnotifier.cpp
zmqnotificationinterface.cpp
zmqpublishnotifier.cpp
)
target_compile_definitions(firo_zmq
INTERFACE
ENABLE_ZMQ=1
)
target_link_libraries(firo_zmq
PRIVATE
core_interface
univalue
zeromq
)

0 comments on commit 3245d44

Please sign in to comment.