summaryrefslogtreecommitdiffstats
path: root/platform/osx/export/export_plugin.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-01-05 14:38:17 +0100
committerGitHub <noreply@github.com>2022-01-05 14:38:17 +0100
commit63d9308b4b27ff6d50e2f663ec72b35edefc2ff2 (patch)
tree786c03e724be8582aeb9f95f128e0c1195753723 /platform/osx/export/export_plugin.h
parentffddb19a695685a7fc4b006497af0a3c8db71761 (diff)
parent5e0e4f209a41643cdaa1a864fed542882c611c0e (diff)
downloadredot-engine-63d9308b4b27ff6d50e2f663ec72b35edefc2ff2.tar.gz
Merge pull request #56047 from piiertho/feature/osx-sign-directory
Diffstat (limited to 'platform/osx/export/export_plugin.h')
-rw-r--r--platform/osx/export/export_plugin.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/osx/export/export_plugin.h b/platform/osx/export/export_plugin.h
index 036fa006ec..aa22ad6384 100644
--- a/platform/osx/export/export_plugin.h
+++ b/platform/osx/export/export_plugin.h
@@ -58,6 +58,13 @@ class EditorExportPlatformOSX : public EditorExportPlatform {
Error _notarize(const Ref<EditorExportPreset> &p_preset, const String &p_path);
Error _code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path);
+ Error _code_sign_directory(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, bool p_should_error_on_non_code = true);
+ Error _copy_and_sign_files(DirAccessRef &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,
+ bool p_should_error_on_non_code_sign);
+ Error _export_osx_plugins_for(Ref<EditorExportPlugin> p_editor_export_plugin, const String &p_app_path_name,
+ DirAccessRef &dir_access, bool p_sign_enabled, const Ref<EditorExportPreset> &p_preset,
+ const String &p_ent_path);
Error _create_dmg(const String &p_dmg_path, const String &p_pkg_name, const String &p_app_path_name);
void _zip_folder_recursive(zipFile &p_zip, const String &p_root_path, const String &p_folder, const String &p_pkg_name);