diff options
author | bunnei <bunneidev@gmail.com> | 2022-03-10 23:12:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 23:12:33 -0800 |
commit | 8180b262fc2bf1c2fa1b52a53c41284168ad83cb (patch) | |
tree | 08479fa9037c7a310d4179bc777860e951f61d52 | |
parent | e200161982dcbafc4bdd8da86a721c56384c6f40 (diff) | |
parent | fc84649aab98593c6004f0f79a2db5ad6ce5cff7 (diff) |
Merge pull request #7982 from BytesGalore/fix_cmake_missing_qt5_dbus
build(cmake): fix missing Qt5::DBus target on linux
-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) set(YUZU_QT_NO_CMAKE_SYSTEM_PATH "NO_CMAKE_SYSTEM_PATH") endif() - find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) + find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets DBus ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) if (YUZU_USE_QT_WEB_ENGINE) find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets) endif() |