2017-12-17 10:25:08 +01:00
|
|
|
project(samplesink)
|
|
|
|
|
|
|
|
find_package(LibUSB)
|
|
|
|
|
2018-04-05 21:24:01 +02:00
|
|
|
find_package(LibBLADERF)
|
|
|
|
if(LIBUSB_FOUND AND LIBBLADERF_FOUND)
|
2018-09-19 11:23:24 +02:00
|
|
|
add_subdirectory(bladerf1output)
|
2018-09-29 09:56:54 +02:00
|
|
|
add_subdirectory(bladerf2output)
|
2018-04-05 21:24:01 +02:00
|
|
|
endif(LIBUSB_FOUND AND LIBBLADERF_FOUND)
|
|
|
|
|
2017-12-29 00:44:17 +01:00
|
|
|
find_package(LibHACKRF)
|
|
|
|
if(LIBUSB_FOUND AND LIBHACKRF_FOUND)
|
|
|
|
add_subdirectory(hackrfoutput)
|
|
|
|
endif(LIBUSB_FOUND AND LIBHACKRF_FOUND)
|
|
|
|
|
2017-12-17 10:25:08 +01:00
|
|
|
find_package(LimeSuite)
|
|
|
|
if(LIBUSB_FOUND AND LIMESUITE_FOUND)
|
|
|
|
add_subdirectory(limesdroutput)
|
|
|
|
endif(LIBUSB_FOUND AND LIMESUITE_FOUND)
|
|
|
|
|
2018-05-29 22:03:47 +02:00
|
|
|
find_package(LibIIO)
|
|
|
|
if(LIBUSB_FOUND AND LIBIIO_FOUND)
|
|
|
|
add_subdirectory(plutosdroutput)
|
|
|
|
endif(LIBUSB_FOUND AND LIBIIO_FOUND)
|
|
|
|
|
2019-03-06 21:40:05 +01:00
|
|
|
find_package(LibXTRX)
|
|
|
|
if(LIBXTRX_FOUND)
|
|
|
|
add_subdirectory(xtrxoutput)
|
|
|
|
endif(LIBXTRX_FOUND)
|
2018-05-29 22:14:37 +02:00
|
|
|
|
2018-11-23 01:17:06 +01:00
|
|
|
find_package(SoapySDR)
|
|
|
|
if(LIBUSB_FOUND AND SOAPYSDR_FOUND)
|
2019-03-06 21:40:05 +01:00
|
|
|
add_subdirectory(soapysdroutput)
|
2018-11-23 01:17:06 +01:00
|
|
|
endif()
|
|
|
|
|
2019-03-06 21:40:05 +01:00
|
|
|
find_package(CM256cc)
|
|
|
|
if(CM256CC_FOUND)
|
|
|
|
add_subdirectory(remoteoutput)
|
|
|
|
endif(CM256CC_FOUND)
|
|
|
|
|
2017-12-17 10:25:08 +01:00
|
|
|
if (BUILD_DEBIAN)
|
2018-09-19 11:23:24 +02:00
|
|
|
add_subdirectory(bladerf1output)
|
2018-09-29 09:56:54 +02:00
|
|
|
add_subdirectory(bladerf2output)
|
2017-12-29 00:44:17 +01:00
|
|
|
add_subdirectory(hackrfoutput)
|
2018-05-29 22:03:47 +02:00
|
|
|
add_subdirectory(limesdroutput)
|
2018-05-29 22:14:37 +02:00
|
|
|
add_subdirectory(plutosdroutput)
|
2019-02-02 22:58:42 +01:00
|
|
|
add_subdirectory(remoteoutput)
|
2017-12-17 10:25:08 +01:00
|
|
|
endif (BUILD_DEBIAN)
|
2017-12-20 01:01:53 +01:00
|
|
|
|
|
|
|
add_subdirectory(filesink)
|