From b57db7541d7a5c92ff5339f2bfd76a067cafcad7 Mon Sep 17 00:00:00 2001 From: Eric Wild Date: Sun, 2 Aug 2020 21:27:56 +0200 Subject: [PATCH] disable the actual osmosdr hardware device The actual hardware called osmosdr was created in 2012 and had only a very very limited production run, and is therefore not of interest to 99.9% of all sdrangelove users. --- plugins/samplesource/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/samplesource/CMakeLists.txt b/plugins/samplesource/CMakeLists.txt index 3135133..1e55d1f 100644 --- a/plugins/samplesource/CMakeLists.txt +++ b/plugins/samplesource/CMakeLists.txt @@ -1,14 +1,14 @@ project(samplesource) find_package(LibUSB) -find_package(LibOsmoSDR) +#find_package(LibOsmoSDR) find_package(LibRTLSDR) add_subdirectory(gnuradio) -if(LIBUSB_FOUND AND LIBOSMOSDR_FOUND) - add_subdirectory(osmosdr) -endif(LIBUSB_FOUND AND LIBOSMOSDR_FOUND) +#if(LIBUSB_FOUND AND LIBOSMOSDR_FOUND) +# add_subdirectory(osmosdr) +#endif(LIBUSB_FOUND AND LIBOSMOSDR_FOUND) if(LIBUSB_FOUND AND LIBRTLSDR_FOUND) add_subdirectory(rtlsdr)