mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
ba28373258
DATV will be excluded when the ffmpeg binary is not installed, although the actual dependencies are fulfilled.
47 lines
1.2 KiB
CMake
47 lines
1.2 KiB
CMake
project(demod)
|
|
|
|
add_subdirectory(demodam)
|
|
add_subdirectory(demodbfm)
|
|
add_subdirectory(demodnfm)
|
|
add_subdirectory(demodssb)
|
|
add_subdirectory(udpsink)
|
|
add_subdirectory(demodwfm)
|
|
add_subdirectory(localsink)
|
|
add_subdirectory(freqtracker)
|
|
|
|
if(LIBDSDCC_FOUND AND LIBMBE_FOUND)
|
|
add_subdirectory(demoddsd)
|
|
endif(LIBDSDCC_FOUND AND LIBMBE_FOUND)
|
|
|
|
if(CM256CC_FOUND)
|
|
add_subdirectory(remotesink)
|
|
endif(CM256CC_FOUND)
|
|
|
|
if (CODEC2_FOUND)
|
|
add_subdirectory(demodfreedv)
|
|
endif(CODEC2_FOUND)
|
|
|
|
if(NOT SERVER_MODE)
|
|
add_subdirectory(demodlora)
|
|
add_subdirectory(chanalyzer)
|
|
add_subdirectory(demodatv)
|
|
|
|
# need ffmpeg 3.1 that correstonds to
|
|
# libavutil 55.27.100
|
|
# libavcodec 57.48.101
|
|
# libavformat 57.40.101
|
|
find_package(FFmpeg COMPONENTS AVCODEC AVFORMAT AVUTIL SWSCALE)
|
|
if (FFMPEG_FOUND)
|
|
if(WIN32)
|
|
add_subdirectory(demoddatv)
|
|
else()
|
|
if((AVUTIL_VERSION VERSION_GREATER "55.27.99") AND (AVCODEC_VERSION VERSION_GREATER "57.48.101"))
|
|
message(STATUS "Include demoddatv")
|
|
add_subdirectory(demoddatv)
|
|
else()
|
|
message(STATUS "FFmpeg too old to compile demoddatv; needs at least avutil: 55.27.100, avcodec/avformat: 57.48.101")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|