diff options
| author | 2022-03-10 23:12:33 -0800 | |
|---|---|---|
| committer | 2022-03-10 23:12:33 -0800 | |
| commit | 8180b262fc2bf1c2fa1b52a53c41284168ad83cb (patch) | |
| tree | 08479fa9037c7a310d4179bc777860e951f61d52 | |
| parent | Merge pull request #7999 from merryhime/fix-7992 (diff) | |
| parent | build(cmake): fix missing Qt5::DBus link target (diff) | |
| download | yuzu-8180b262fc2bf1c2fa1b52a53c41284168ad83cb.tar.gz yuzu-8180b262fc2bf1c2fa1b52a53c41284168ad83cb.tar.xz yuzu-8180b262fc2bf1c2fa1b52a53c41284168ad83cb.zip | |
Merge pull request #7982 from BytesGalore/fix_cmake_missing_qt5_dbus
build(cmake): fix missing Qt5::DBus target on linux
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bf55d664..af433ff2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -363,7 +363,7 @@ if(ENABLE_QT) | |||
| 363 | 363 | ||
| 364 | set(YUZU_QT_NO_CMAKE_SYSTEM_PATH "NO_CMAKE_SYSTEM_PATH") | 364 | set(YUZU_QT_NO_CMAKE_SYSTEM_PATH "NO_CMAKE_SYSTEM_PATH") |
| 365 | endif() | 365 | endif() |
| 366 | find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) | 366 | find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets DBus ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) |
| 367 | if (YUZU_USE_QT_WEB_ENGINE) | 367 | if (YUZU_USE_QT_WEB_ENGINE) |
| 368 | find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets) | 368 | find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets) |
| 369 | endif() | 369 | endif() |