summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-07-01 06:25:47 +0200
committerGitHub <noreply@github.com>2020-07-01 06:25:47 +0200
commitbeb172e9fcd70f39da2c767730177b7dd456ba8a (patch)
tree07b7050a0e59ceaf324b1ee5605e14622ae35620
parentMerge pull request #3967 from FearlessTobi/keys-singleton (diff)
parentcmake: depend on WebEngine with system Qt (diff)
downloadyuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.tar
yuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.tar.gz
yuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.tar.bz2
yuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.tar.lz
yuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.tar.xz
yuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.tar.zst
yuzu-beb172e9fcd70f39da2c767730177b7dd456ba8a.zip
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b71071271..73405ce4b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -214,6 +214,9 @@ if(ENABLE_QT)
set(QT_PREFIX_HINT HINTS "${QT_PREFIX}")
endif()
find_package(Qt5 5.9 COMPONENTS Widgets OpenGL ${QT_PREFIX_HINT})
+ if (YUZU_USE_QT_WEB_ENGINE)
+ find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets)
+ endif()
if (NOT Qt5_FOUND)
list(APPEND CONAN_REQUIRED_LIBS "qt/5.14.1@bincrafters/stable")
endif()