diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-03-20 22:30:31 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-03-21 12:50:31 -0500 |
commit | f301451fa3304ad2072898838ea9801b044ffbd9 (patch) | |
tree | a83a1f8334af52f9f88538fa52d8e01028c77f25 /platform/windows/export/export_plugin.cpp | |
parent | 5a28b1ae5118d05b5d22fe2f6f1109f839058c9d (diff) | |
download | redot-engine-f301451fa3304ad2072898838ea9801b044ffbd9.tar.gz |
Move extension logic to EditorExportPlatformLinuxBSD
Diffstat (limited to 'platform/windows/export/export_plugin.cpp')
-rw-r--r-- | platform/windows/export/export_plugin.cpp | 6 |
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") { |