Browse Source
Merge pull request #4209 from jbeich/webengine
cmake: unbreak YUZU_USE_QT_WEB_ENGINE without YUZU_USE_BUNDLED_QT
pull/15/merge
David
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
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() |
|
|
|
|