CMake: mention ffmpeg in libav messages

We support both.
This commit is contained in:
Tillmann Karras 2014-06-15 09:20:13 +02:00
parent 95eade2a47
commit 7e01002372

View File

@ -58,14 +58,14 @@ macro(check_libav)
pkg_check_modules(LIBAV libavcodec>=53.35.0 libavformat>=53.21.0
libswscale>=2.1.0 libavutil>=51.22.1)
else()
message("pkg-config is required to check for libav")
message("pkg-config is required to check for libav/ffmpeg")
endif()
if(LIBAV_FOUND)
message("libav found, enabling AVI frame dumps")
message("libav/ffmpeg found, enabling AVI frame dumps")
add_definitions(-DHAVE_LIBAV)
include_directories(${LIBAV_INCLUDE_DIRS})
else()
message("libav not found, disabling AVI frame dumps")
message("libav/ffmpeg not found, disabling AVI frame dumps")
endif()
endmacro()