diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-10 12:47:07 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-10 12:47:07 +0200 |
commit | 74e5ad5c6010f43ad3e3524864920be279851fce (patch) | |
tree | a4524b34bbb748cf062f466a7c5ebbfd15e67b1c /platform/windows/export/export_plugin.h | |
parent | 5271186f2f826cc6667766d9db32c1ca8b0743ec (diff) | |
parent | fab160ce70fffa4fc1eed302c4ddd2a9c7882c93 (diff) | |
download | redot-engine-74e5ad5c6010f43ad3e3524864920be279851fce.tar.gz |
Merge pull request #76165 from and-rad/safe-credentials
Store sensitive export options in dedicated credentials file
Diffstat (limited to 'platform/windows/export/export_plugin.h')
-rw-r--r-- | platform/windows/export/export_plugin.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/platform/windows/export/export_plugin.h b/platform/windows/export/export_plugin.h index c466971202..184b2f96f8 100644 --- a/platform/windows/export/export_plugin.h +++ b/platform/windows/export/export_plugin.h @@ -36,6 +36,12 @@ #include "editor/editor_settings.h" #include "editor/export/editor_export_platform_pc.h" +// Optional environment variables for defining confidential information. If any +// of these is set, they will override the values set in the credentials file. +const String ENV_WIN_CODESIGN_ID_TYPE = "GODOT_WINDOWS_CODESIGN_IDENTITY_TYPE"; +const String ENV_WIN_CODESIGN_ID = "GODOT_WINDOWS_CODESIGN_IDENTITY"; +const String ENV_WIN_CODESIGN_PASS = "GODOT_WINDOWS_CODESIGN_PASSWORD"; + class EditorExportPlatformWindows : public EditorExportPlatformPC { GDCLASS(EditorExportPlatformWindows, EditorExportPlatformPC); |