summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Negyokru <negyokru@inf.u-szeged.hu>2023-02-28 15:31:20 +0100
committerMichal Klocek <michal.klocek@qt.io>2023-03-01 14:28:44 +0000
commita75051ee7b4dd9ffe86e146d98c7d6412c756621 (patch)
tree8ab606e5992f726f85cb9c260dad26fc3c9e8412
parentb7b85263c19e84c00aba322484f5986a880fb43e (diff)
downloadqtwebengine-a75051ee7b4dd9ffe86e146d98c7d6412c756621.tar.gz
Fix cross-compilation with system ffmpeg
We were using QT_FEATURE_system_ffmpeg which is not defined. Use QT_FEATURE_webengine_system_ffmpeg instead. Pick-to: dev Change-Id: Ic7b6d4ea91dc8b29f344118c28932fa80a7a8d10 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r--src/core/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index b1e99987e..e1e551a3e 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -468,7 +468,7 @@ foreach(arch ${archs})
if(CMAKE_CROSSCOMPILING AND cpu STREQUAL "arm")
check_thumb(armThumb)
- if(NOT armThumb AND NOT QT_FEATURE_system_ffmpeg)
+ if(NOT armThumb AND NOT QT_FEATURE_webengine_system_ffmpeg)
list(APPEND gnArgArg media_use_ffmpeg=false use_webaudio_ffmpeg=false)
endif()
endif()