From 13392a96e9471ba54a6af84140aaa14817fb6a29 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Tue, 22 Mar 2022 09:40:34 -0500 Subject: Generate export template file names instead of having a fixed set --- platform/linuxbsd/export/export_plugin.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'platform/linuxbsd/export/export_plugin.cpp') diff --git a/platform/linuxbsd/export/export_plugin.cpp b/platform/linuxbsd/export/export_plugin.cpp index 08fc9c0452..24906fa3fb 100644 --- a/platform/linuxbsd/export/export_plugin.cpp +++ b/platform/linuxbsd/export/export_plugin.cpp @@ -77,6 +77,10 @@ void EditorExportPlatformLinuxBSD::set_extension(const String &p_extension, cons extensions[p_feature_key] = p_extension; } +String EditorExportPlatformLinuxBSD::get_template_file_name(const String &p_target, const String &p_arch) const { + return "linux_x11_" + p_arch + "_" + p_target; +} + List EditorExportPlatformLinuxBSD::get_binary_extensions(const Ref &p_preset) const { List list; for (const KeyValue &E : extensions) { -- cgit v1.2.3