Add checking for ZMQ/PyZMQ to CMakeLists.txt

This commit is contained in:
Nick Foster 2013-09-18 08:53:00 -07:00
parent 3f86a74132
commit 9f522cf082

View File

@ -75,6 +75,20 @@ if(NOT GNURADIO_RUNTIME_FOUND)
message(FATAL_ERROR "GnuRadio Runtime required to compile gr-air-modes")
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
########################################################################