diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-24 09:55:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 09:55:24 +0100 |
commit | 476b8a2249681d8b35bd2bf8ec661db523d5d34b (patch) | |
tree | bede6fd8f0b5364ab5c18cc8dfd99d579478f3bf /platform/windows/export/export_plugin.cpp | |
parent | dc85c721441d99e24de21dc8d4cc223455b2ec86 (diff) | |
parent | 13392a96e9471ba54a6af84140aaa14817fb6a29 (diff) |
Merge pull request #59416 from aaronfranke/export-file
Diffstat (limited to 'platform/windows/export/export_plugin.cpp')
-rw-r--r-- | platform/windows/export/export_plugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/windows/export/export_plugin.cpp b/platform/windows/export/export_plugin.cpp index f20cff90c1..e627253739 100644 --- a/platform/windows/export/export_plugin.cpp +++ b/platform/windows/export/export_plugin.cpp @@ -86,6 +86,10 @@ Error EditorExportPlatformWindows::export_project(const Ref<EditorExportPreset> return err; } +String EditorExportPlatformWindows::get_template_file_name(const String &p_target, const String &p_arch) const { + return "windows_" + p_arch + "_" + p_target + ".exe"; +} + List<String> EditorExportPlatformWindows::get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const { List<String> list; list.push_back("exe"); |