2016-10-19 16:32:14 -04:00
|
|
|
project(samplesink)
|
|
|
|
|
2016-12-29 06:41:10 -05:00
|
|
|
find_package(LibUSB)
|
|
|
|
|
|
|
|
find_package(LibBLADERF)
|
2017-01-02 04:39:21 -05:00
|
|
|
if(LIBUSB_FOUND AND LIBBLADERF_FOUND)
|
2018-09-19 02:42:59 -04:00
|
|
|
add_subdirectory(bladerf1output)
|
2018-09-28 23:49:14 -04:00
|
|
|
add_subdirectory(bladerf2output)
|
2017-01-02 04:39:21 -05:00
|
|
|
endif(LIBUSB_FOUND AND LIBBLADERF_FOUND)
|
2016-12-29 06:41:10 -05:00
|
|
|
|
2017-01-08 07:04:06 -05:00
|
|
|
find_package(LibHACKRF)
|
|
|
|
if(LIBUSB_FOUND AND LIBHACKRF_FOUND)
|
|
|
|
add_subdirectory(hackrfoutput)
|
|
|
|
endif(LIBUSB_FOUND AND LIBHACKRF_FOUND)
|
2017-01-07 22:13:20 -05:00
|
|
|
|
2017-04-22 05:33:41 -04:00
|
|
|
find_package(LimeSuite)
|
|
|
|
if(LIBUSB_FOUND AND LIMESUITE_FOUND)
|
|
|
|
add_subdirectory(limesdroutput)
|
|
|
|
endif(LIBUSB_FOUND AND LIMESUITE_FOUND)
|
|
|
|
|
2017-10-29 09:51:56 -04:00
|
|
|
find_package(LibIIO)
|
|
|
|
if(LIBUSB_FOUND AND LIBIIO_FOUND)
|
|
|
|
add_subdirectory(plutosdroutput)
|
|
|
|
endif(LIBUSB_FOUND AND LIBIIO_FOUND)
|
2017-09-19 16:00:28 -04:00
|
|
|
|
2017-05-14 18:58:56 -04:00
|
|
|
find_package(CM256cc)
|
2018-08-29 12:39:40 -04:00
|
|
|
if(CM256CC_FOUND)
|
2019-02-02 16:58:42 -05:00
|
|
|
add_subdirectory(remoteoutput)
|
2018-08-29 12:39:40 -04:00
|
|
|
endif(CM256CC_FOUND)
|
2017-05-14 18:58:56 -04:00
|
|
|
|
2018-10-29 13:27:58 -04:00
|
|
|
find_package(SoapySDR)
|
2018-12-19 07:22:49 -05:00
|
|
|
if(SOAPYSDR_FOUND)
|
2018-10-29 13:27:58 -04:00
|
|
|
add_subdirectory(soapysdroutput)
|
|
|
|
endif()
|
|
|
|
|
2019-01-02 09:35:43 -05:00
|
|
|
find_package(LibXTRX)
|
|
|
|
if(LIBXTRX_FOUND)
|
|
|
|
add_subdirectory(xtrxoutput)
|
|
|
|
endif(LIBXTRX_FOUND)
|
|
|
|
|
2017-01-02 04:39:21 -05:00
|
|
|
if (BUILD_DEBIAN)
|
2018-09-19 02:42:59 -04:00
|
|
|
add_subdirectory(bladerf1output)
|
2018-09-28 23:49:14 -04:00
|
|
|
add_subdirectory(bladerf2output)
|
2017-01-08 18:52:29 -05:00
|
|
|
add_subdirectory(hackrfoutput)
|
2018-03-14 03:37:40 -04:00
|
|
|
add_subdirectory(limesdroutput)
|
2018-05-29 16:03:47 -04:00
|
|
|
add_subdirectory(plutosdroutput)
|
2019-02-02 16:58:42 -05:00
|
|
|
add_subdirectory(remoteoutput)
|
2018-12-01 04:09:10 -05:00
|
|
|
add_subdirectory(soapysdroutput)
|
2017-01-02 04:39:21 -05:00
|
|
|
endif (BUILD_DEBIAN)
|
2016-12-29 06:41:10 -05:00
|
|
|
|
2016-10-19 16:32:14 -04:00
|
|
|
add_subdirectory(filesink)
|
|
|
|
|