summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2021-02-04 14:08:08 -0600
committerBe <be@mixxx.org>2021-02-16 23:50:35 -0600
commit70b0c51620e7fd4b054693e0fef5af79dc80f839 (patch)
treeebd07e5ef1c2f3e18fc5100622a83c8e8dbbf234 /cmake
parent7eceda88c79d7f01f9192b1c8879e4043f4b923b (diff)
CMake: add user feedback for FindFFMPEG.cmake module
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindFFMPEG.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/modules/FindFFMPEG.cmake b/cmake/modules/FindFFMPEG.cmake
index cd1ebe34c8..91d78d586e 100644
--- a/cmake/modules/FindFFMPEG.cmake
+++ b/cmake/modules/FindFFMPEG.cmake
@@ -105,10 +105,10 @@ macro(find_component _component _pkgconfig _library _header)
set(FFMPEG_${_component}_VERSION ${PC_FFMPEG_${_component}_VERSION} CACHE STRING "The ${_component} version number.")
if (FFMPEG_${_component}_LIBRARIES AND FFMPEG_${_component}_INCLUDE_DIRS)
- # message(STATUS " - ${_component} found.")
+ message(STATUS " - ${_component} found.")
set(FFMPEG_${_component}_FOUND TRUE)
else ()
- # message(STATUS " - ${_component} not found.")
+ message(STATUS " - ${_component} not found.")
endif ()
mark_as_advanced(
@@ -119,7 +119,7 @@ macro(find_component _component _pkgconfig _library _header)
endmacro()
-
+message(STATUS "Searching for FFMPEG components")
# Check for all possible component.
find_component(libavcodec libavcodec avcodec libavcodec/avcodec.h)
find_component(libavformat libavformat avformat libavformat/avformat.h)