From 28907e1c22e170e7292633a4227830cc9262d12b Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Fri, 14 Jun 2019 11:21:31 +0200 Subject: [PATCH] hotfix: build with GNU Radio > 3.7.13.4 but < 3.8 --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 10cb6b119..6d54e0580 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1271,7 +1271,9 @@ if(ENABLE_UHD) find_package(Gnuradio) endif() endif() - +if(PC_GNURADIO_RUNTIME_VERSION VERSION_LESS "3.7.99") + set(PC_GNURADIO_RUNTIME_VERSION "3.7.13") +endif() ################################################################################ # Doxygen - http://www.stack.nl/~dimitri/doxygen/index.html (OPTIONAL, used if found)