diff options
author | bunnei <bunneidev@gmail.com> | 2022-03-14 18:56:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-14 18:56:39 -0700 |
commit | 59d2a38daa78bc211647bd742de068295ae65009 (patch) | |
tree | e644341a4ee407a0c04c47cb9cea699681e6e8bc | |
parent | cd07a43724d55617988ad75085847345a837a372 (diff) | |
parent | 948f6e1112a856c820076e5bc3a7f9ee63b36374 (diff) |
Merge pull request #8006 from BytesGalore/fix_cmake_missing_qt5_dbus
build(cmake): fix missing Qt5::DBus link target for bundled linux package
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bf55d664..11a459813 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -363,7 +363,11 @@ 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}) + if ((${CMAKE_SYSTEM_NAME} STREQUAL "Linux") AND YUZU_USE_BUNDLED_QT) + find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets DBus ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) + else() + find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH}) + endif() if (YUZU_USE_QT_WEB_ENGINE) find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets) endif() |