mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
AccessKit integration for macOS, Linux, and Windows.
This commit is contained in:
parent
b106dfd4f9
commit
4310cb82b8
45 changed files with 23274 additions and 28 deletions
|
|
@ -72,6 +72,11 @@ Error EditorExportPlatformLinuxBSD::export_project(const Ref<EditorExportPreset>
|
|||
}
|
||||
}
|
||||
|
||||
Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
|
||||
if (da->file_exists(template_path.get_base_dir().path_join("libaccesskit." + arch + ".so"))) {
|
||||
da->copy(template_path.get_base_dir().path_join("libaccesskit." + arch + ".so"), p_path.get_base_dir().path_join("libaccesskit." + arch + ".so"), get_chmod_flags());
|
||||
}
|
||||
|
||||
bool export_as_zip = p_path.ends_with("zip");
|
||||
|
||||
String pkg_name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue