[apple embedded] Replace individual iOS/visionOS Xcode templates by Apple embedded template

This commit is contained in:
Ricardo Sanchez-Saez
2025-06-30 20:02:21 -07:00
parent 3defc856b0
commit 6d9983e958
55 changed files with 609 additions and 1197 deletions

View File

@@ -54,3 +54,51 @@ void EditorExportPlatformVisionOS::get_export_options(List<ExportOption> *r_opti
Vector<EditorExportPlatformAppleEmbedded::IconInfo> EditorExportPlatformVisionOS::get_icon_infos() const {
return Vector<EditorExportPlatformAppleEmbedded::IconInfo>();
}
String EditorExportPlatformVisionOS::_process_config_file_line(const Ref<EditorExportPreset> &p_preset, const String &p_line, const AppleEmbeddedConfigData &p_config, bool p_debug, const CodeSigningDetails &p_code_signing) {
// Do visionOS specific processing first, and call super implementation if there are no matches
String strnew;
// Supported Destinations
if (p_line.contains("$targeted_device_family")) {
strnew += p_line.replace("$targeted_device_family", "7") + "\n";
// MoltenVK Framework not used on visionOS
} else if (p_line.contains("$moltenvk_buildfile")) {
strnew += p_line.replace("$moltenvk_buildfile", "") + "\n";
} else if (p_line.contains("$moltenvk_fileref")) {
strnew += p_line.replace("$moltenvk_fileref", "") + "\n";
} else if (p_line.contains("$moltenvk_buildphase")) {
strnew += p_line.replace("$moltenvk_buildphase", "") + "\n";
} else if (p_line.contains("$moltenvk_buildgrp")) {
strnew += p_line.replace("$moltenvk_buildgrp", "") + "\n";
// Launch Storyboard
} else if (p_line.contains("$plist_launch_screen_name")) {
strnew += p_line.replace("$plist_launch_screen_name", "") + "\n";
} else if (p_line.contains("$pbx_launch_screen_file_reference")) {
strnew += p_line.replace("$pbx_launch_screen_file_reference", "") + "\n";
} else if (p_line.contains("$pbx_launch_screen_copy_files")) {
strnew += p_line.replace("$pbx_launch_screen_copy_files", "") + "\n";
} else if (p_line.contains("$pbx_launch_screen_build_phase")) {
strnew += p_line.replace("$pbx_launch_screen_build_phase", "") + "\n";
} else if (p_line.contains("$pbx_launch_screen_build_reference")) {
strnew += p_line.replace("$pbx_launch_screen_build_reference", "") + "\n";
// OS Deployment Target
} else if (p_line.contains("$os_deployment_target")) {
String min_version = p_preset->get("application/min_" + get_platform_name() + "_version");
String value = "XROS_DEPLOYMENT_TARGET = " + min_version + ";";
strnew += p_line.replace("$os_deployment_target", value) + "\n";
// Valid Archs
} else if (p_line.contains("$valid_archs")) {
strnew += p_line.replace("$valid_archs", "arm64") + "\n";
// Apple Embedded common
} else {
strnew += EditorExportPlatformAppleEmbedded::_process_config_file_line(p_preset, p_line, p_config, p_debug, p_code_signing);
}
return strnew;
}