From 7e010023724ca4fad46b213faa818041a249af8d Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 15 Jun 2014 09:20:13 +0200 Subject: [PATCH] CMake: mention ffmpeg in libav messages We support both. --- CMakeTests/CheckLib.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeTests/CheckLib.cmake b/CMakeTests/CheckLib.cmake index 7b2525adae..5f02ffd721 100644 --- a/CMakeTests/CheckLib.cmake +++ b/CMakeTests/CheckLib.cmake @@ -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()