diff options
author | Pierre-Thomas Meisels <meisels27@yahoo.fr> | 2021-12-18 10:21:08 +0100 |
---|---|---|
committer | Pierre-Thomas Meisels <meisels27@yahoo.fr> | 2021-12-28 14:39:42 +0100 |
commit | 5e0e4f209a41643cdaa1a864fed542882c611c0e (patch) | |
tree | 5edf42dc19b88a8631aafc381ba2584973c1ffae /platform/osx/export/export_plugin.h | |
parent | 9f5045f70f3d34735074651d951d5c219b163ed3 (diff) | |
download | redot-engine-5e0e4f209a41643cdaa1a864fed542882c611c0e.tar.gz |
OSX: Add signing of directory structure in Library when exporting for OSX.
OSX: Add exporting of folder structure in PlugIns when exporting for OSX.
Diffstat (limited to 'platform/osx/export/export_plugin.h')
-rw-r--r-- | platform/osx/export/export_plugin.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/osx/export/export_plugin.h b/platform/osx/export/export_plugin.h index ca5086622e..aa1c3609ea 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); |