diff options
| author | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-09-17 14:40:58 -0300 |
|---|---|---|
| committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-09-17 14:40:58 -0300 |
| commit | 3528b1e571dee24917b0141232f135e29bf088ba (patch) | |
| tree | 1994ea234d7c52dac02084242671348844bed3fc /editor/editor_export.h | |
| parent | 574a5714dcbf5fcf126f3f99caab62a345e665c1 (diff) | |
| download | redot-engine-3528b1e571dee24917b0141232f135e29bf088ba.tar.gz | |
Fix x11 exported executables not getting the +x flag
Diffstat (limited to 'editor/editor_export.h')
| -rw-r--r-- | editor/editor_export.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_export.h b/editor/editor_export.h index b6ea4fd889..50379b9683 100644 --- a/editor/editor_export.h +++ b/editor/editor_export.h @@ -319,6 +319,7 @@ class EditorExportPlatformPC : public EditorExportPlatform { Set<String> extra_features; bool use64; + int chmod_flags; public: virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features); @@ -347,6 +348,9 @@ public: void add_platform_feature(const String &p_feature); virtual void get_platform_features(List<String> *r_features); + int get_chmod_flags() const; + void set_chmod_flags(int p_flags); + EditorExportPlatformPC(); }; |
