diff --git a/devices/CMakeLists.txt b/devices/CMakeLists.txt index 65439fb0d..422cc588b 100644 --- a/devices/CMakeLists.txt +++ b/devices/CMakeLists.txt @@ -28,19 +28,19 @@ else(BUILD_DEBIAN) if(LIBUSB_FOUND AND LIMESUITE_FOUND) add_subdirectory(limesdr) endif(LIBUSB_FOUND AND LIMESUITE_FOUND) - + find_package(LibIIO) if(LIBUSB_FOUND AND LIBIIO_FOUND) add_subdirectory(plutosdr) endif(LIBUSB_FOUND AND LIBIIO_FOUND) - + find_package(LibPerseus) if(LIBUSB_FOUND AND LIBPERSEUS_FOUND) add_subdirectory(perseus) endif() - + find_package(SoapySDR) - if(LIBUSB_FOUND AND SOAPYSDR_FOUND) + if(SOAPYSDR_FOUND) add_subdirectory(soapysdr) endif() endif (BUILD_DEBIAN) diff --git a/plugins/samplesink/CMakeLists.txt b/plugins/samplesink/CMakeLists.txt index a57d121a4..ecedfd0d6 100644 --- a/plugins/samplesink/CMakeLists.txt +++ b/plugins/samplesink/CMakeLists.txt @@ -29,7 +29,7 @@ if(CM256CC_FOUND) endif(CM256CC_FOUND) find_package(SoapySDR) -if(LIBUSB_FOUND AND SOAPYSDR_FOUND) +if(SOAPYSDR_FOUND) add_subdirectory(soapysdroutput) endif()