summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2021-06-17 16:00:08 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-06-17 19:13:07 +0000
commitf2c3e1a3fc986c5e78565a5fed6b519342499029 (patch)
treed82136844508c0d0e245f6192c504a7cb24bde67 /src
parent4d5e2845583b072431aaf0695614910c01717e0f (diff)
CMake: Rename qt6_finalize_ios_app to be internal
For now, it's not meant to be called manually. It's called in qt_add_executable automatically for iOS. Amends 4d838dae5a821e9e5f013ba1d5a494ece1b5180e Task-number: QTBUG-88763 Change-Id: I90dfcf86f53a3c8e48a813435f7400db232b21f4 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> (cherry picked from commit 51b8c81c84136d5e80a803b2248ed1d17ab43ef0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/Qt6CoreMacros.cmake5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/corelib/Qt6CoreMacros.cmake b/src/corelib/Qt6CoreMacros.cmake
index f292c5c5bc..ce09f83ca5 100644
--- a/src/corelib/Qt6CoreMacros.cmake
+++ b/src/corelib/Qt6CoreMacros.cmake
@@ -585,7 +585,7 @@ function(_qt_internal_finalize_executable target)
qt_wasm_add_target_helpers("${target}")
endif()
if(IOS)
- qt6_finalize_ios_app("${target}")
+ _qt_internal_finalize_ios_app("${target}")
endif()
# For finalizer mode of plugin importing to work safely, we need to know the list of Qt
@@ -713,8 +713,7 @@ function(_qt_internal_get_default_ios_bundle_identifier out_var)
set("${out_var}" "${prefix}.\${PRODUCT_NAME:rfc1034identifier}" PARENT_SCOPE)
endfunction()
-
-function(qt6_finalize_ios_app target)
+function(_qt_internal_finalize_ios_app target)
# If user hasn't provided a development team id, try to find the first one specified
# in the Xcode preferences.
if(NOT CMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM AND NOT QT_NO_SET_XCODE_DEVELOPMENT_TEAM_ID)