diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-30 11:48:12 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-30 11:48:12 +0200 |
commit | 8ec272f288fbc679f39050ffe569d85c9296f675 (patch) | |
tree | 798a7aef60e7d5d1ebc7f3ba0ae6baa28b17501c /platform/ios | |
parent | adbc4b086b4d562e5d5fef7911ddd3afc5912397 (diff) | |
parent | b6e5e168685780a1dd2b50a0ba462d56a77029b6 (diff) | |
download | redot-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.cpp | 7 |
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"; |