summaryrefslogtreecommitdiffstats
path: root/src/tools/configure.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/configure.cmake')
-rw-r--r--src/tools/configure.cmake9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tools/configure.cmake b/src/tools/configure.cmake
index 86b9fa7000..f813b727ba 100644
--- a/src/tools/configure.cmake
+++ b/src/tools/configure.cmake
@@ -1,20 +1,23 @@
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: BSD-3-Clause
+
qt_feature("androiddeployqt" PRIVATE
SECTION "Deployment"
LABEL "Android deployment tool"
PURPOSE "The Android deployment tool automates the process of creating Android packages."
- CONDITION NOT CMAKE_CROSSCOMPILING AND QT_FEATURE_regularexpression)
+ CONDITION NOT CMAKE_CROSSCOMPILING AND QT_FEATURE_regularexpression AND QT_FEATURE_settings)
qt_feature("macdeployqt" PRIVATE
SECTION "Deployment"
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"
LABEL "Windows deployment tool"
- PURPOSE "The Windows deployment tool is designed to automate the process of creating a deployable folder containing the Qt-related dependencies (libraries, QML imports, plugins, and translations) required to run the application from that folder. It creates a sandbox for Universal Windows Platform (UWP) or an installation tree for Windows desktop applications, which can be easily bundled into an installation package."
+ PURPOSE "The Windows deployment tool is designed to automate the process of creating a deployable folder containing the Qt-related dependencies (libraries, QML imports, plugins, and translations) required to run the application from that folder. The folder can be easily bundled into an installation package."
AUTODETECT CMAKE_HOST_WIN32
CONDITION WIN32)