2016-12-30 10:13:28 -05:00
|
|
|
project(devices)
|
|
|
|
|
2019-05-01 05:54:58 -04:00
|
|
|
include_directories(
|
|
|
|
# export.h
|
|
|
|
${CMAKE_SOURCE_DIR}/exports
|
|
|
|
# util/message.h
|
|
|
|
${CMAKE_SOURCE_DIR}/sdrbase
|
|
|
|
)
|
|
|
|
|
|
|
|
if(ENABLE_BLADERF AND LIBBLADERF_FOUND)
|
2018-09-18 23:26:18 -04:00
|
|
|
add_subdirectory(bladerf1)
|
2018-09-21 20:55:40 -04:00
|
|
|
add_subdirectory(bladerf2)
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_HACKRF AND LIBHACKRF_FOUND)
|
2017-01-07 05:24:09 -05:00
|
|
|
add_subdirectory(hackrf)
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_LIMESUITE AND LIMESUITE_FOUND)
|
2017-05-08 21:56:01 -04:00
|
|
|
add_subdirectory(limesdr)
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_XTRX AND LIBXTRX_FOUND)
|
|
|
|
add_subdirectory(xtrx)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_IIO AND LIBIIO_FOUND)
|
2017-09-01 22:21:41 -04:00
|
|
|
add_subdirectory(plutosdr)
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_PERSEUS AND LIBPERSEUS_FOUND)
|
|
|
|
add_subdirectory(perseus)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_SOAPYSDR AND SOAPYSDR_FOUND)
|
2018-12-01 04:09:10 -05:00
|
|
|
add_subdirectory(soapysdr)
|
2019-05-01 05:54:58 -04:00
|
|
|
endif()
|