mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
M17: added mod and demod cmake enablers
This commit is contained in:
parent
15e3d843f3
commit
d24e7a59fb
@ -62,6 +62,7 @@ option(ENABLE_CHANNELRX_DEMODDAB "Enable channelrx demoddab plugin" ON)
|
||||
option(ENABLE_CHANNELRX_UDPSINK "Enable channelrx udpsink plugin" ON)
|
||||
option(ENABLE_CHANNELRX_DEMODAIS "Enable channelrx demodais plugin" ON)
|
||||
option(ENABLE_CHANNELRX_DEMODNFM "Enable channelrx demodnfm plugin" ON)
|
||||
option(ENABLE_CHANNELRX_DEMODM17 "Enable channelrx demodm17 plugin" ON)
|
||||
option(ENABLE_CHANNELRX_FILESINK "Enable channelrx filesink plugin" ON)
|
||||
option(ENABLE_CHANNELRX_DEMODFREEDV "Enable channelrx demodfreedv plugin" ON)
|
||||
option(ENABLE_CHANNELRX_DEMODCHIRPCHAT "Enable channelrx demodchirpchat plugin" ON)
|
||||
@ -80,6 +81,7 @@ option(ENABLE_CHANNELRX_DEMODDSD "Enable channelrx demoddsd plugin" ON)
|
||||
|
||||
# Channel Tx enablers
|
||||
option(ENABLE_CHANNELTX "Enable channeltx plugins" ON)
|
||||
option(ENABLE_CHANNELTX_MODM17 "Enable channeltx modm17 plugin" ON)
|
||||
option(ENABLE_CHANNELTX_MODNFM "Enable channeltx modnfm plugin" ON)
|
||||
option(ENABLE_CHANNELTX_MODAIS "Enable channeltx modais plugin" ON)
|
||||
option(ENABLE_CHANNELTX_LOCALSOURCE "Enable channeltx localsource plugin" ON)
|
||||
|
@ -91,8 +91,11 @@ endif()
|
||||
|
||||
if (ENABLE_CHANNELRX_DEMODFREEDV AND CODEC2_FOUND)
|
||||
add_subdirectory(demodfreedv)
|
||||
endif()
|
||||
|
||||
if (ENABLE_CHANNELRX_DEMODM17 AND CODEC2_FOUND)
|
||||
add_subdirectory(demodm17)
|
||||
endif(CODEC2_FOUND)
|
||||
endif()
|
||||
|
||||
if (ENABLE_CHANNELRX_SIGMFFILESINK AND LIBSIGMF_FOUND AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||||
add_subdirectory(sigmffilesink)
|
||||
|
@ -61,5 +61,8 @@ endif()
|
||||
|
||||
if (ENABLE_CHANNELTX_MODFREEDV AND CODEC2_FOUND)
|
||||
add_subdirectory(modfreedv)
|
||||
endif()
|
||||
|
||||
if (ENABLE_CHANNELTX_MODM17 AND CODEC2_FOUND)
|
||||
add_subdirectory(modm17)
|
||||
endif(CODEC2_FOUND)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user