diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-07-18 23:40:49 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-07-18 23:40:49 +0300 |
commit | 975ee76e2b29e03929c5857570a62978e8f059b5 (patch) | |
tree | d1af0e7192bdf6e527d7d3aa6c658f32ee64cf72 /platform/macos/export/export_plugin.h | |
parent | ff8a2780ee777c2456ce42368e1065774c7c4c3f (diff) | |
download | redot-engine-975ee76e2b29e03929c5857570a62978e8f059b5.tar.gz |
[macOS] Fix codesigning of .NET helper executables when sandboxing is disabled.
Diffstat (limited to 'platform/macos/export/export_plugin.h')
-rw-r--r-- | platform/macos/export/export_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/macos/export/export_plugin.h b/platform/macos/export/export_plugin.h index 6134d756b9..1929fc8d5f 100644 --- a/platform/macos/export/export_plugin.h +++ b/platform/macos/export/export_plugin.h @@ -94,10 +94,10 @@ class EditorExportPlatformMacOS : public EditorExportPlatform { Error _code_sign_directory(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, const String &p_helper_ent_path, bool p_should_error_on_non_code = true); Error _copy_and_sign_files(Ref<DirAccess> &dir_access, const String &p_src_path, const String &p_in_app_path, bool p_sign_enabled, const Ref<EditorExportPreset> &p_preset, const String &p_ent_path, const String &p_helper_ent_path, - bool p_should_error_on_non_code_sign); + bool p_should_error_on_non_code_sign, bool p_sandbox); Error _export_macos_plugins_for(Ref<EditorExportPlugin> p_editor_export_plugin, const String &p_app_path_name, Ref<DirAccess> &dir_access, bool p_sign_enabled, const Ref<EditorExportPreset> &p_preset, - const String &p_ent_path, const String &p_helper_ent_path); + const String &p_ent_path, const String &p_helper_ent_path, bool p_sandbox); Error _create_dmg(const String &p_dmg_path, const String &p_pkg_name, const String &p_app_path_name); Error _create_pkg(const Ref<EditorExportPreset> &p_preset, const String &p_pkg_path, const String &p_app_path_name); Error _export_debug_script(const Ref<EditorExportPreset> &p_preset, const String &p_app_name, const String &p_pkg_name, const String &p_path); |