From 036eda0a9240eee2de2648f73eaaeaa1d96b433b Mon Sep 17 00:00:00 2001 From: Davide Gerhard Date: Mon, 15 Apr 2019 11:57:30 +0200 Subject: [PATCH] fcdpro/fcdproplus: disable samplesource on macOS --- plugins/samplesource/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/samplesource/CMakeLists.txt b/plugins/samplesource/CMakeLists.txt index d093126ec..215a7089c 100644 --- a/plugins/samplesource/CMakeLists.txt +++ b/plugins/samplesource/CMakeLists.txt @@ -29,10 +29,10 @@ if(LIBUSB_FOUND AND LIBBLADERF_FOUND) add_subdirectory(bladerf2input) endif(LIBUSB_FOUND AND LIBBLADERF_FOUND) -if(LIBUSB_FOUND) +if(LIBUSB_FOUND AND NOT APPLE) add_subdirectory(fcdpro) add_subdirectory(fcdproplus) -endif() +endif(LIBUSB_FOUND AND NOT APPLE) find_package(LibHACKRF) if(LIBUSB_FOUND AND LIBHACKRF_FOUND)