Fix x11 exported executables not getting the +x flag

This commit is contained in:
Marcelo Fernandez 2017-09-16 22:38:32 -03:00
parent 8be9e8b484
commit b48704c620
6 changed files with 38 additions and 0 deletions

View file

@ -86,6 +86,7 @@ public:
private:
bool debugging_enabled;
int chmod_flags;
protected:
bool _set(const StringName &p_name, const Variant &p_value);
@ -149,6 +150,9 @@ public:
bool is_debugging_enabled() const;
void set_debugging_enabled(bool p_enabled);
int get_chmod_flags() const;
void set_chmod_flags(int p_flags);
Error export_project_files(EditorExportSaveFunction p_func, void *p_udata, bool p_make_bundles);
Error save_pack(FileAccess *p_where, bool p_make_bundles = false, int p_alignment = 1);