summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2022-07-15 00:50:51 -0400
committerGravatar Morph2022-07-15 00:50:51 -0400
commitfc503c3445741206d7a845a2a9a1dca35f44f70f (patch)
tree432dba4c0e4d9ece05bc28cf58f0d068e04dc905
parentCMakeLists: Add QtConcurrent to required components (diff)
downloadyuzu-fc503c3445741206d7a845a2a9a1dca35f44f70f.tar.gz
yuzu-fc503c3445741206d7a845a2a9a1dca35f44f70f.tar.xz
yuzu-fc503c3445741206d7a845a2a9a1dca35f44f70f.zip
CMakeLists: Mark WebEngine(Core/Widgets) as required
Mark these components as required when we are building with QtWebEngine enabled.
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8d572392f..c5ecb3ae7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -356,7 +356,7 @@ if(ENABLE_QT)
356 find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets Concurrent ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) 356 find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets Concurrent ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH})
357 endif() 357 endif()
358 if (YUZU_USE_QT_WEB_ENGINE) 358 if (YUZU_USE_QT_WEB_ENGINE)
359 find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets) 359 find_package(Qt5 REQUIRED COMPONENTS WebEngineCore WebEngineWidgets)
360 endif() 360 endif()
361 361
362 if (ENABLE_QT_TRANSLATION) 362 if (ENABLE_QT_TRANSLATION)