diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-11-02 11:07:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-02 11:07:18 +0100 |
commit | 5beaea989146a7ac6d4e5fa74d084d911622e543 (patch) | |
tree | 958523e367e9c5c039a2fd535101f35b8609087d /platform/iphone | |
parent | eed56bce14b468555804430bde82ac20adf89e6f (diff) | |
parent | d51999f11d7f6c1b30310a08cde7b12666e673ac (diff) |
Merge pull request #23389 from marcelofg55/multiple_ext
Export for OS X on OS X now lets you select .dmg or .zip
Diffstat (limited to 'platform/iphone')
-rw-r--r-- | platform/iphone/export/export.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 63bc4a519b..1fc497456c 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -108,7 +108,11 @@ public: virtual String get_os_name() const { return "iOS"; } virtual Ref<Texture> get_logo() const { return logo; } - virtual String get_binary_extension(const Ref<EditorExportPreset> &p_preset) const { return "ipa"; } + virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const { + List<String> list; + list.push_back("ipa"); + return list; + } virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0); virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const; |