diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-10-12 22:52:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-12 22:52:59 +0200 |
| commit | f2248969db7e5cb8463f323160bed8d00aae7629 (patch) | |
| tree | 9baeaa0000cc4adfa5a496de093ab5aee88af702 /platform/macos/export/export_plugin.h | |
| parent | ea47e03b360d0aeee10c1f7ef798f5750c2b1aa8 (diff) | |
| parent | 6daf4c659303c148c2c84d5cc04214eee0ee3654 (diff) | |
Merge pull request #66952 from bruvzg/macos_net_export
Fix macOS .NET export.
Diffstat (limited to 'platform/macos/export/export_plugin.h')
| -rw-r--r-- | platform/macos/export/export_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/macos/export/export_plugin.h b/platform/macos/export/export_plugin.h index 87790129d3..b6ad587caa 100644 --- a/platform/macos/export/export_plugin.h +++ b/platform/macos/export/export_plugin.h @@ -97,6 +97,7 @@ class EditorExportPlatformMacOS : public EditorExportPlatform { return true; } + bool is_shbang(const String &p_path) const; protected: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) const override; @@ -108,6 +109,7 @@ public: virtual String get_os_name() const override { return "macOS"; } virtual Ref<Texture2D> get_logo() const override { return logo; } + virtual bool is_executable(const String &p_path) const override; virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const override { List<String> list; if (use_dmg()) { |