diff options
author | Mikael Hermansson <mikael@hermansson.io> | 2024-05-29 17:42:11 +0200 |
---|---|---|
committer | Mikael Hermansson <mikael@hermansson.io> | 2024-05-29 17:54:49 +0200 |
commit | b6e5e168685780a1dd2b50a0ba462d56a77029b6 (patch) | |
tree | 3dfaee06f2388bf5c3a643a31970daa6d44a67fb /platform/ios | |
parent | 8bf8f41fc017531b502fe77b36c3b14e180cec5c (diff) | |
download | redot-engine-b6e5e168685780a1dd2b50a0ba462d56a77029b6.tar.gz |
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 6a452f08fa..e17644df06 100644 --- a/platform/ios/export/export_plugin.cpp +++ b/platform/ios/export/export_plugin.cpp @@ -1332,7 +1332,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"; |