mirror of
https://github.com/godotengine/godot.git
synced 2025-10-26 19:24:18 +00:00
Generate export template file names instead of having a fixed set
This commit is contained in:
parent
a30d17fe23
commit
13392a96e9
8 changed files with 14 additions and 49 deletions
|
|
@ -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<String> EditorExportPlatformLinuxBSD::get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const {
|
||||
List<String> list;
|
||||
for (const KeyValue<String, String> &E : extensions) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue