summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2024-03-01 12:36:15 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2024-03-01 15:35:10 +0100
commit7d616997b62c37f3e3a9f39b4116151ec2846c6b (patch)
tree147d64224d0d6fd7486fa50c01a2d7220cce0f35 /cmake
parent3bec392c1ffcfa29a9fcbe2ef2ad76727f36e699 (diff)
Fix spelling of FFmpeg in (end-)user-visible strings
It's two capital "FF", lowercase "mpeg". Pick-to: 6.7 6.6 6.5 Change-Id: I96d90ba959c5f52e998323800e97c8e72c731910 Reviewed-by: Kai Köhne <kai.koehne@qt.io> Reviewed-by: Artem Dyomin <artem.dyomin@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindFFmpeg.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmake/FindFFmpeg.cmake b/cmake/FindFFmpeg.cmake
index fbb2bca81..e112ae45e 100644
--- a/cmake/FindFFmpeg.cmake
+++ b/cmake/FindFFmpeg.cmake
@@ -21,9 +21,9 @@
#
# FFMPEG_FOUND - System has the all required components.
# FFMPEG_INCLUDE_DIRS - Include directory necessary for using the required components headers.
-# FFMPEG_LIBRARIES - Link these to use the required ffmpeg components.
+# FFMPEG_LIBRARIES - Link these to use the required FFmpeg components.
# FFMPEG_LIBRARY_DIRS - Link directories
-# FFMPEG_DEFINITIONS - Compiler switches required for using the required ffmpeg components.
+# FFMPEG_DEFINITIONS - Compiler switches required for using the required FFmpeg components.
#
# For each of the components it will additionally set.
#
@@ -73,7 +73,7 @@ if (QT_DEPLOY_FFMPEG AND BUILD_SHARED_LIBS)
set(shared_libs_required TRUE)
endif()
-# finds ffmpeg libs, including symlinks, for the specified component.
+# finds FFmpeg libs, including symlinks, for the specified component.
macro(find_shared_libs_for_component _component)
# the searching pattern is pretty rough but it seems to be sufficient to gather dynamic libs
get_filename_component(name_we ${${_component}_LIBRARY} NAME_WE)
@@ -345,7 +345,7 @@ endfunction()
list(LENGTH FFMPEG_LIBRARY_DIRS DIRS_COUNT)
if (${DIRS_COUNT} GREATER 1)
- message(WARNING "One ffmpeg library dir is expected, found dirs: ${FFMPEG_LIBRARY_DIRS}")
+ message(WARNING "One FFmpeg library dir is expected, found dirs: ${FFMPEG_LIBRARY_DIRS}")
endif()
if(FFMPEG_SHARED_COMPONENTS AND FFMPEG_STATIC_COMPONENTS)