summaryrefslogtreecommitdiffstats
path: root/platform/ios
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-30 11:48:12 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-30 11:48:12 +0200
commit8ec272f288fbc679f39050ffe569d85c9296f675 (patch)
tree798a7aef60e7d5d1ebc7f3ba0ae6baa28b17501c /platform/ios
parentadbc4b086b4d562e5d5fef7911ddd3afc5912397 (diff)
parentb6e5e168685780a1dd2b50a0ba462d56a77029b6 (diff)
downloadredot-engine-8ec272f288fbc679f39050ffe569d85c9296f675.tar.gz
Merge pull request #92519 from mihe/stop-xcframework-embed
Prevent static XCFramework bundles from being embedded on iOS
Diffstat (limited to 'platform/ios')
-rw-r--r--platform/ios/export/export_plugin.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp
index 769d97694a..bc3a6d4628 100644
--- a/platform/ios/export/export_plugin.cpp
+++ b/platform/ios/export/export_plugin.cpp
@@ -1370,7 +1370,12 @@ void EditorExportPlatformIOS::_add_assets_to_project(const String &p_out_dir, co
type = "wrapper.framework";
} else if (asset.exported_path.ends_with(".xcframework")) {
- if (asset.should_embed) {
+ int total_libs = 0;
+ int static_libs = 0;
+ int dylibs = 0;
+ int frameworks = 0;
+ _check_xcframework_content(p_out_dir.path_join(asset.exported_path), total_libs, static_libs, dylibs, frameworks);
+ if (asset.should_embed && static_libs != total_libs) {
additional_asset_info_format += "$framework_id = {isa = PBXBuildFile; fileRef = $ref_id; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };\n";
framework_id = (++current_id).str();
pbx_embeded_frameworks += framework_id + ",\n";