You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
[iOS] Extend iOS plugins to support Swift runtime
This commit is contained in:
@@ -413,6 +413,35 @@ void EditorExportPlatformIOS::_fix_config_file(const Ref<EditorExportPreset> &p_
|
||||
}
|
||||
}
|
||||
strnew += lines[i].replace("$pbx_locale_build_reference", locale_files);
|
||||
} else if (lines[i].find("$swift_runtime_migration") != -1) {
|
||||
String value = !p_config.use_swift_runtime ? "" : "LastSwiftMigration = 1250;";
|
||||
strnew += lines[i].replace("$swift_runtime_migration", value) + "\n";
|
||||
} else if (lines[i].find("$swift_runtime_build_settings") != -1) {
|
||||
String value = !p_config.use_swift_runtime ? "" : R"(
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
SWIFT_OBJC_BRIDGING_HEADER = "$binary/dummy.h";
|
||||
SWIFT_VERSION = 5.0;
|
||||
)";
|
||||
value = value.replace("$binary", p_config.binary_name);
|
||||
strnew += lines[i].replace("$swift_runtime_build_settings", value) + "\n";
|
||||
} else if (lines[i].find("$swift_runtime_fileref") != -1) {
|
||||
String value = !p_config.use_swift_runtime ? "" : R"(
|
||||
90B4C2AA2680BC560039117A /* dummy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "dummy.h"; sourceTree = "<group>"; };
|
||||
90B4C2B52680C7E90039117A /* dummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "dummy.swift"; sourceTree = "<group>"; };
|
||||
)";
|
||||
strnew += lines[i].replace("$swift_runtime_fileref", value) + "\n";
|
||||
} else if (lines[i].find("$swift_runtime_binary_files") != -1) {
|
||||
String value = !p_config.use_swift_runtime ? "" : R"(
|
||||
90B4C2AA2680BC560039117A /* dummy.h */,
|
||||
90B4C2B52680C7E90039117A /* dummy.swift */,
|
||||
)";
|
||||
strnew += lines[i].replace("$swift_runtime_binary_files", value) + "\n";
|
||||
} else if (lines[i].find("$swift_runtime_buildfile") != -1) {
|
||||
String value = !p_config.use_swift_runtime ? "" : "90B4C2B62680C7E90039117A /* dummy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90B4C2B52680C7E90039117A /* dummy.swift */; };";
|
||||
strnew += lines[i].replace("$swift_runtime_buildfile", value) + "\n";
|
||||
} else if (lines[i].find("$swift_runtime_build_phase") != -1) {
|
||||
String value = !p_config.use_swift_runtime ? "" : "90B4C2B62680C7E90039117A /* dummy.swift */,";
|
||||
strnew += lines[i].replace("$swift_runtime_build_phase", value) + "\n";
|
||||
} else {
|
||||
strnew += lines[i] + "\n";
|
||||
}
|
||||
@@ -1298,6 +1327,10 @@ Error EditorExportPlatformIOS::_export_ios_plugins(const Ref<EditorExportPreset>
|
||||
|
||||
plugin_initialization_cpp_code += "\t" + initialization_method;
|
||||
plugin_deinitialization_cpp_code += "\t" + deinitialization_method;
|
||||
|
||||
if (plugin.use_swift_runtime) {
|
||||
p_config_data.use_swift_runtime = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Updating `Info.plist`
|
||||
@@ -1479,7 +1512,8 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
Vector<String>()
|
||||
Vector<String>(),
|
||||
false
|
||||
};
|
||||
|
||||
Vector<IOSExportAsset> assets;
|
||||
|
||||
Reference in New Issue
Block a user