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