2016-12-30 16:13:28 +01:00
|
|
|
project(devices)
|
|
|
|
|
2019-05-01 11:54:58 +02: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 05:26:18 +02:00
|
|
|
add_subdirectory(bladerf1)
|
2018-09-22 02:55:40 +02:00
|
|
|
add_subdirectory(bladerf2)
|
2019-05-01 11:54:58 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_HACKRF AND LIBHACKRF_FOUND)
|
2017-01-07 11:24:09 +01:00
|
|
|
add_subdirectory(hackrf)
|
2019-05-01 11:54:58 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_LIMESUITE AND LIMESUITE_FOUND)
|
2017-05-09 03:56:01 +02:00
|
|
|
add_subdirectory(limesdr)
|
2019-05-01 11:54:58 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_XTRX AND LIBXTRX_FOUND)
|
|
|
|
add_subdirectory(xtrx)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_IIO AND LIBIIO_FOUND)
|
2017-09-02 04:21:41 +02:00
|
|
|
add_subdirectory(plutosdr)
|
2019-05-01 11:54:58 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_PERSEUS AND LIBPERSEUS_FOUND)
|
|
|
|
add_subdirectory(perseus)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ENABLE_SOAPYSDR AND SOAPYSDR_FOUND)
|
2018-12-01 10:09:10 +01:00
|
|
|
add_subdirectory(soapysdr)
|
2019-05-01 11:54:58 +02:00
|
|
|
endif()
|