Add checking for ZMQ/PyZMQ to CMakeLists.txt
This commit is contained in:
parent
3f86a74132
commit
9f522cf082
@ -75,6 +75,20 @@ if(NOT GNURADIO_RUNTIME_FOUND)
|
|||||||
message(FATAL_ERROR "GnuRadio Runtime required to compile gr-air-modes")
|
message(FATAL_ERROR "GnuRadio Runtime required to compile gr-air-modes")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
# Find ZMQ and get version
|
||||||
|
########################################################################
|
||||||
|
include(FindZeroMQ)
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
# Find PyZMQ bindings
|
||||||
|
########################################################################
|
||||||
|
include(GrPython)
|
||||||
|
GR_PYTHON_CHECK_MODULE("PyZMQ" "zmq" "int(zmq.__version__.split('.')[0]) >= 13" ZMQ_FOUND)
|
||||||
|
if(NOT ZMQ_FOUND)
|
||||||
|
message(FATAL_ERROR "Python ZMQ bindings not found.")
|
||||||
|
endif()
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# Setup the include and linker paths
|
# Setup the include and linker paths
|
||||||
########################################################################
|
########################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user