summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/Qt6CoreDeploySupport.cmake4
-rw-r--r--src/corelib/Qt6CoreMacros.cmake4
-rw-r--r--src/corelib/doc/src/cmake/cmake-configure-variables.qdoc4
-rw-r--r--src/corelib/doc/src/cmake/cmake-deploy-variables.qdoc10
-rw-r--r--src/corelib/doc/src/cmake/qt_deploy_qt_conf.qdoc2
-rw-r--r--src/corelib/doc/src/cmake/qt_deploy_runtime_dependencies.qdoc2
-rw-r--r--src/corelib/doc/src/cmake/qt_generate_deploy_app_script.qdoc2
-rw-r--r--src/corelib/doc/src/cmake/qt_standard_project_setup.qdoc2
8 files changed, 30 insertions, 0 deletions
diff --git a/src/corelib/Qt6CoreDeploySupport.cmake b/src/corelib/Qt6CoreDeploySupport.cmake
index eb2f92f3ce..a116a0dc08 100644
--- a/src/corelib/Qt6CoreDeploySupport.cmake
+++ b/src/corelib/Qt6CoreDeploySupport.cmake
@@ -4,6 +4,8 @@
cmake_minimum_required(VERSION 3.16...3.21)
+# This function is currently in Technical Preview.
+# Its signature and behavior might change.
function(qt_deploy_qt_conf file_to_write)
set(no_value_options "")
set(single_value_options
@@ -85,6 +87,8 @@ function(qt_deploy_qt_conf file_to_write)
file(WRITE "${file_to_write}" "${contents}")
endfunction()
+# This function is currently in Technical Preview.
+# Its signature and behavior might change.
function(qt_deploy_runtime_dependencies)
if(NOT __QT_DEPLOY_TOOL)
diff --git a/src/corelib/Qt6CoreMacros.cmake b/src/corelib/Qt6CoreMacros.cmake
index 1136fcbc5a..1949ca7066 100644
--- a/src/corelib/Qt6CoreMacros.cmake
+++ b/src/corelib/Qt6CoreMacros.cmake
@@ -2577,6 +2577,8 @@ endfunction()
# Note this needs to be a macro because it sets variables intended for the
# calling scope.
+# This function is currently in Technical Preview.
+# Its signature and behavior might change.
macro(qt6_standard_project_setup)
# A parent project might want to prevent child projects pulled in with
# add_subdirectory() from changing the parent's preferred arrangement.
@@ -2633,6 +2635,8 @@ if(NOT QT_NO_CREATE_VERSIONLESS_FUNCTIONS)
endmacro()
endif()
+# This function is currently in Technical Preview.
+# Its signature and behavior might change.
function(qt6_generate_deploy_app_script)
# We use a TARGET keyword option instead of taking the target as the first
# positional argument. This is to keep open the possibility of deploying
diff --git a/src/corelib/doc/src/cmake/cmake-configure-variables.qdoc b/src/corelib/doc/src/cmake/cmake-configure-variables.qdoc
index af0452fc6b..dab62cbcba 100644
--- a/src/corelib/doc/src/cmake/cmake-configure-variables.qdoc
+++ b/src/corelib/doc/src/cmake/cmake-configure-variables.qdoc
@@ -182,6 +182,8 @@ must be set before the first \c{find_package(Qt6)} call to have that effect.
\summary {Name of the file to include for setting up deployment support.}
+\preliminarycmakevariable
+
This variable is set by the Core package. It is intended to be used as the first
line of any deployment script. Such scripts do not run during CMake's configure
phase, they are executed during installation or as part of a post-build rule.
@@ -204,6 +206,8 @@ an application, along with its runtime dependencies:
\summary {Prevents subsequent calls to qt_standard_project_setup() from making any changes.}
+\preliminarycmakevariable
+
The \l{qt6_standard_project_setup}{qt_standard_project_setup()} command is
typically called in the top level \c{CMakeLists.txt} file of a project. In some
scenarios, such projects may be absorbed as a child project of a larger project
diff --git a/src/corelib/doc/src/cmake/cmake-deploy-variables.qdoc b/src/corelib/doc/src/cmake/cmake-deploy-variables.qdoc
index 55d467309b..0c9d66812a 100644
--- a/src/corelib/doc/src/cmake/cmake-deploy-variables.qdoc
+++ b/src/corelib/doc/src/cmake/cmake-deploy-variables.qdoc
@@ -43,6 +43,8 @@
\include cmake-deploy-var-usage.qdocinc
+\preliminarycmakevariable
+
\c{QT_DEPLOY_PREFIX} provides the base directory of the deployment. The other
\c{QT_DEPLOY_..._DIR} variables should be treated as relative to this location.
The value of \c{QT_DEPLOY_PREFIX} may be relative or absolute, so projects
@@ -78,6 +80,8 @@ variables.
\include cmake-deploy-var-usage.qdocinc
+\preliminarycmakevariable
+
Projects should use \c QT_DEPLOY_BIN_DIR in their deploy scripts instead of
hard-coding a particular directory in which to deploy the following types of
binaries:
@@ -113,6 +117,8 @@ should not be used for that scenario.
\include cmake-deploy-var-usage.qdocinc
+\preliminarycmakevariable
+
Projects should use \c QT_DEPLOY_LIB_DIR in their deploy scripts instead of
hard-coding a particular directory in which to deploy the following types of
binaries:
@@ -144,6 +150,8 @@ should not be used for that scenario.
\include cmake-deploy-var-usage.qdocinc
+\preliminarycmakevariable
+
Projects should use \c QT_DEPLOY_PLUGINS_DIR in their deploy scripts instead of
hard-coding a particular directory under which to deploy plugins.
@@ -170,6 +178,8 @@ bundle contents.
\include cmake-deploy-var-usage.qdocinc
+\preliminarycmakevariable
+
Projects should use \c QT_DEPLOY_QML_DIR in their deploy scripts instead of
hard-coding a particular directory under which to deploy QML modules.
diff --git a/src/corelib/doc/src/cmake/qt_deploy_qt_conf.qdoc b/src/corelib/doc/src/cmake/qt_deploy_qt_conf.qdoc
index 173c9230f8..abd1991b13 100644
--- a/src/corelib/doc/src/cmake/qt_deploy_qt_conf.qdoc
+++ b/src/corelib/doc/src/cmake/qt_deploy_qt_conf.qdoc
@@ -40,6 +40,8 @@ Unlike most other CMake commands provided by Qt, \c{qt_deploy_qt_conf()} can
only be called from a deployment script. It cannot be called directly by the
project.
+\preliminarycmakecommand
+
\section1 Synopsis
\badcode
diff --git a/src/corelib/doc/src/cmake/qt_deploy_runtime_dependencies.qdoc b/src/corelib/doc/src/cmake/qt_deploy_runtime_dependencies.qdoc
index 1cfee0331e..0a41de7b02 100644
--- a/src/corelib/doc/src/cmake/qt_deploy_runtime_dependencies.qdoc
+++ b/src/corelib/doc/src/cmake/qt_deploy_runtime_dependencies.qdoc
@@ -40,6 +40,8 @@ Unlike most other CMake commands provided by Qt, \c{qt_deploy_runtime_dependenci
can only be called from a deployment script. It cannot be called directly by the
project during the configure stage.
+\preliminarycmakecommand
+
\section1 Synopsis
\badcode
diff --git a/src/corelib/doc/src/cmake/qt_generate_deploy_app_script.qdoc b/src/corelib/doc/src/cmake/qt_generate_deploy_app_script.qdoc
index 0869f7ed0a..103fad3761 100644
--- a/src/corelib/doc/src/cmake/qt_generate_deploy_app_script.qdoc
+++ b/src/corelib/doc/src/cmake/qt_generate_deploy_app_script.qdoc
@@ -36,6 +36,8 @@
\include cmake-find-package-core.qdocinc
+\preliminarycmakecommand
+
\section1 Synopsis
\badcode
diff --git a/src/corelib/doc/src/cmake/qt_standard_project_setup.qdoc b/src/corelib/doc/src/cmake/qt_standard_project_setup.qdoc
index 6c3fcc3f93..da53bb4cef 100644
--- a/src/corelib/doc/src/cmake/qt_standard_project_setup.qdoc
+++ b/src/corelib/doc/src/cmake/qt_standard_project_setup.qdoc
@@ -36,6 +36,8 @@
\include cmake-find-package-core.qdocinc
+\preliminarycmakecommand
+
\section1 Synopsis
\badcode