diff options
author | Andreas Raddau <and.rad@posteo.de> | 2023-05-10 11:40:17 +0200 |
---|---|---|
committer | Andreas Raddau <and.rad@posteo.de> | 2023-05-10 11:40:17 +0200 |
commit | fab160ce70fffa4fc1eed302c4ddd2a9c7882c93 (patch) | |
tree | 94e54926f77875477633ee3823cd520d8c0d6a25 /platform/uwp/export/export_plugin.h | |
parent | 668cf3c66f42989949399f36e9faa29426e37416 (diff) | |
download | redot-engine-fab160ce70fffa4fc1eed302c4ddd2a9c7882c93.tar.gz |
Store sensitive export options in dedicated credentials file
Diffstat (limited to 'platform/uwp/export/export_plugin.h')
-rw-r--r-- | platform/uwp/export/export_plugin.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/uwp/export/export_plugin.h b/platform/uwp/export/export_plugin.h index 37a32b1f7f..b42a2ae6d9 100644 --- a/platform/uwp/export/export_plugin.h +++ b/platform/uwp/export/export_plugin.h @@ -85,6 +85,11 @@ static const char *uwp_device_capabilities[] = { nullptr }; +// 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_UWP_SIGNING_CERT = "GODOT_UWP_SIGNING_CERTIFICATE"; +const String ENV_UWP_SIGNING_PASS = "GODOT_UWP_SIGNING_PASSWORD"; + class EditorExportPlatformUWP : public EditorExportPlatform { GDCLASS(EditorExportPlatformUWP, EditorExportPlatform); |