summaryrefslogtreecommitdiff
path: root/platform/windows/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-21 20:34:58 +0100
committerGitHub <noreply@github.com>2022-03-21 20:34:58 +0100
commit422a45a69e0c6f63bbb01fbe62931289b7c4651c (patch)
treea83a1f8334af52f9f88538fa52d8e01028c77f25 /platform/windows/export/export_plugin.cpp
parent5a28b1ae5118d05b5d22fe2f6f1109f839058c9d (diff)
parentf301451fa3304ad2072898838ea9801b044ffbd9 (diff)
Merge pull request #59371 from aaronfranke/export-platform-ext
Move extension logic to EditorExportPlatformLinuxBSD
Diffstat (limited to 'platform/windows/export/export_plugin.cpp')
-rw-r--r--platform/windows/export/export_plugin.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/platform/windows/export/export_plugin.cpp b/platform/windows/export/export_plugin.cpp
index e579c967fb..f20cff90c1 100644
--- a/platform/windows/export/export_plugin.cpp
+++ b/platform/windows/export/export_plugin.cpp
@@ -86,6 +86,12 @@ Error EditorExportPlatformWindows::export_project(const Ref<EditorExportPreset>
return err;
}
+List<String> EditorExportPlatformWindows::get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const {
+ List<String> list;
+ list.push_back("exe");
+ return list;
+}
+
bool EditorExportPlatformWindows::get_export_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const {
// This option is not supported by "osslsigncode", used on non-Windows host.
if (!OS::get_singleton()->has_feature("windows") && p_option == "codesign/identity_type") {