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()