summaryrefslogtreecommitdiffstats
path: root/platform/ios/export/export_plugin.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-12-08 18:45:58 +0100
committerYuri Sizov <yuris@humnom.net>2023-12-08 18:45:58 +0100
commitdea7597111e60a187a330c99993de16266d3a946 (patch)
tree579c57a6249850e19529daf39ab1b937ef2e0910 /platform/ios/export/export_plugin.h
parent6269341461006144c30b6362084e8e836a341bd7 (diff)
parent33ce138b9b243c23bd9e418aab68672ea0502674 (diff)
downloadredot-engine-dea7597111e60a187a330c99993de16266d3a946.tar.gz
Merge pull request #85546 from bruvzg/devicectl_support
[iOS one-click] Add support for Xcode 15 devicectl.
Diffstat (limited to 'platform/ios/export/export_plugin.h')
-rw-r--r--platform/ios/export/export_plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/ios/export/export_plugin.h b/platform/ios/export/export_plugin.h
index 951017ddae..fd2243bcda 100644
--- a/platform/ios/export/export_plugin.h
+++ b/platform/ios/export/export_plugin.h
@@ -70,6 +70,7 @@ class EditorExportPlatformIOS : public EditorExportPlatform {
String name;
bool simulator = false;
bool wifi = false;
+ bool use_ios_deploy = false;
};
Vector<Device> devices;
@@ -139,7 +140,7 @@ class EditorExportPlatformIOS : public EditorExportPlatform {
Error _export_additional_assets(const String &p_out_dir, const Vector<SharedObject> &p_libraries, Vector<IOSExportAsset> &r_exported_assets);
Error _export_ios_plugins(const Ref<EditorExportPreset> &p_preset, IOSConfigData &p_config_data, const String &dest_dir, Vector<IOSExportAsset> &r_exported_assets, bool p_debug);
- Error _export_project_helper(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags, bool p_simulator, bool p_skip_ipa);
+ Error _export_project_helper(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags, bool p_simulator, bool p_oneclick);
bool is_package_name_valid(const String &p_package, String *r_error = nullptr) const;