From c8458c97f2f58bb2cafdb14e2f661b831bf20fd3 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 15 Nov 2022 07:15:05 -0600 Subject: [PATCH] default disable for mirisdr --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1803f85..6398e39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -346,7 +346,11 @@ endif(ENABLE_RTL) ######################################################################## # Setup MiriSDR component ######################################################################## -GR_REGISTER_COMPONENT("Osmocom MiriSDR" ENABLE_MIRI LIBMIRISDR_FOUND) +#soapy osmo mirisdr deprecated, use soapy mirisdr +#https://github.com/ericek111/SoapyMiri +option(USE_OSMO_MIRISDR "Use MiriSDR through SoapyOsmo" OFF) + +GR_REGISTER_COMPONENT("Osmocom MiriSDR" ENABLE_MIRI LIBMIRISDR_FOUND;USE_OSMO_MIRISDR) if(ENABLE_MIRI) GR_INCLUDE_SUBDIRECTORY(miri) endif(ENABLE_MIRI)