summaryrefslogtreecommitdiffstats
path: root/platform/ios
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-06-03 10:36:10 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-06-03 10:36:10 +0200
commitf976a625e1e5e0016d35a81e62701d601405faa2 (patch)
tree1b7e21eb8ac6d60c10b23e71a4f684639ff6502a /platform/ios
parent3f39d970420c7fa27f264b5bf986977150a2405e (diff)
parent84ee828b5816d45139716795b7620f03f6d7cde1 (diff)
downloadredot-engine-f976a625e1e5e0016d35a81e62701d601405faa2.tar.gz
Merge pull request #92692 from mihe/always-embed-frameworks
Fix iOS exports never embedding framework bundles
Diffstat (limited to 'platform/ios')
-rw-r--r--platform/ios/export/export_plugin.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/platform/ios/export/export_plugin.cpp b/platform/ios/export/export_plugin.cpp
index bc3a6d4628..2194804b3b 100644
--- a/platform/ios/export/export_plugin.cpp
+++ b/platform/ios/export/export_plugin.cpp
@@ -1357,12 +1357,7 @@ void EditorExportPlatformIOS::_add_assets_to_project(const String &p_out_dir, co
String type;
if (asset.exported_path.ends_with(".framework")) {
- 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)) {
+ if (asset.should_embed) {
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";