diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-07-15 00:49:21 -0400 | 
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-07-15 00:49:21 -0400 | 
| commit | e991525d630eb320e6f02c964d5c44a5abb9847f (patch) | |
| tree | 4ff9cc09a86a5016e3add68862158da7a720d03b | |
| parent | 53fb4a78a3ab73b4233464b74be5fcf53b0424d0 (diff) | |
CMakeLists: Add QtConcurrent to required components
We use QtConcurrent in various places in our Qt frontend, add it to the required components.
| -rw-r--r-- | CMakeLists.txt | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/CMakeLists.txt b/CMakeLists.txt index 80a8d4ed8..8d572392f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -351,9 +351,9 @@ if(ENABLE_QT)          set(YUZU_QT_NO_CMAKE_SYSTEM_PATH "NO_CMAKE_SYSTEM_PATH")      endif()      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}) +        find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets Concurrent 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}) +        find_package(Qt5 ${QT_VERSION} REQUIRED COMPONENTS Widgets Concurrent ${QT_PREFIX_HINT} ${YUZU_QT_NO_CMAKE_SYSTEM_PATH})      endif()      if (YUZU_USE_QT_WEB_ENGINE)          find_package(Qt5 COMPONENTS WebEngineCore WebEngineWidgets) | 
