diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-02-13 14:26:05 -0800 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-04-19 07:55:08 -0700 |
commit | ede88cf59d20da54042f16df3fe6ab1aca760d64 (patch) | |
tree | 2f9ffd406178cf69ea88946c0eb50fa156af9ae9 /editor/export/editor_export_plugin.cpp | |
parent | 4a0160241fd0c1e874e297f6b08676cf0761e5e8 (diff) | |
download | redot-engine-ede88cf59d20da54042f16df3fe6ab1aca760d64.tar.gz |
Fix loading GDExtension dependencies on Android
Diffstat (limited to 'editor/export/editor_export_plugin.cpp')
-rw-r--r-- | editor/export/editor_export_plugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/export/editor_export_plugin.cpp b/editor/export/editor_export_plugin.cpp index 5353eae654..28d0750d5a 100644 --- a/editor/export/editor_export_plugin.cpp +++ b/editor/export/editor_export_plugin.cpp @@ -60,6 +60,10 @@ void EditorExportPlugin::add_shared_object(const String &p_path, const Vector<St shared_objects.push_back(SharedObject(p_path, p_tags, p_target)); } +void EditorExportPlugin::_add_shared_object(const SharedObject &p_shared_object) { + shared_objects.push_back(p_shared_object); +} + void EditorExportPlugin::add_ios_framework(const String &p_path) { ios_frameworks.push_back(p_path); } |