From 3fc1951f417a7d8163c834dfa508460cf95e28cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20S=C3=B8rvig?= Date: Tue, 24 Oct 2023 13:22:59 +0200 Subject: [PATCH] no-thread: don't build macdeployqt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macdeployqt requires multithrading support. Change-Id: Ie561434d68f46bc82ec603aee2c36cd43597073a Reviewed-by: Tor Arne Vestbø --- src/tools/configure.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/configure.cmake b/src/tools/configure.cmake index 2a198c899d..ac6c7e2aa5 100644 --- a/src/tools/configure.cmake +++ b/src/tools/configure.cmake @@ -12,7 +12,7 @@ qt_feature("macdeployqt" PRIVATE LABEL "macOS deployment tool" PURPOSE "The Mac deployment tool automates the process of creating a deployable application bundle that contains the Qt libraries as private frameworks." AUTODETECT CMAKE_HOST_APPLE - CONDITION MACOS) + CONDITION MACOS AND QT_FEATURE_thread) qt_feature("windeployqt" PRIVATE SECTION "Deployment"