summaryrefslogtreecommitdiffstats
path: root/cmake/QtPluginHelpers.cmake
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2022-03-11 12:41:36 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-05-07 13:25:43 +0000
commit10a2af661152aed997cad75081de42528743ee89 (patch)
tree3096674ac1c912aa41b55faa20aa98f1fb76b10b /cmake/QtPluginHelpers.cmake
parent200dde53da025ce39c899e736bdaae3a762ad36d (diff)
build system: support module local definitions
This introduces a new helper function, qt_internal_add_repo_local_defines and makes use of it in qt_internal_add_{module,test,executable,benchmark,plugin}. That function checks whether QT_EXTRA_INTERNAL_TARGET_DEFINES is set. If it is, the defines listed in there will be aded to all targets passed to the functions mentioned above. The intended usage is that QT_EXTRA_INTERNAL_TARGET_DEFINES gets set in the repository local .cmake.conf. This allows e.g. opting in to source incompatible changes in leaf modules (as long as those are guarded by some define). Fixes: QTBUG-101640 Change-Id: I06c3693ee69f46e95a48de724621f0c97e7cc3a8 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commit 57c1e8d5339979cf124f28c58adc87c3d91a7fc2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'cmake/QtPluginHelpers.cmake')
-rw-r--r--cmake/QtPluginHelpers.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/QtPluginHelpers.cmake b/cmake/QtPluginHelpers.cmake
index fe90a33b85..7023e705e8 100644
--- a/cmake/QtPluginHelpers.cmake
+++ b/cmake/QtPluginHelpers.cmake
@@ -329,6 +329,8 @@ function(qt_internal_add_plugin target)
DISABLE_AUTOGEN_TOOLS ${arg_DISABLE_AUTOGEN_TOOLS}
)
+ qt_internal_add_repo_local_defines("${target}")
+
qt_internal_set_exceptions_flags("${target}" ${arg_EXCEPTIONS})