diff options
| author | Ignacio Etcheverry | 2018-02-22 13:39:52 +0100 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-15 00:04:18 +0200 |
| commit | 548ec63f76a61dddaa97b425225158e728dbe9fa (patch) | |
| tree | 77b54a8e735405615fb3361fb9be63b7db6bec62 | |
| parent | 9e4d34aebb2677706d0580256955c44358224244 (diff) | |
| download | godot-548ec63f76a61dddaa97b425225158e728dbe9fa.tar.gz godot-548ec63f76a61dddaa97b425225158e728dbe9fa.tar.zst godot-548ec63f76a61dddaa97b425225158e728dbe9fa.zip | |
EditorExport: Allow export plugins to add shared libraries
(cherry picked from commit a38b59b656e6834d466df37379266c29d6364490)
| -rw-r--r-- | editor/editor_export.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index c3c16a41b..da4bbf9b7 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -274,8 +274,6 @@ void EditorExportPlatform::gen_debug_flags(Vector<String> &r_flags, int p_flags) } Error EditorExportPlatform::_save_pack_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total) { - if (p_path.ends_with(".so") || p_path.ends_with(".dylib") || p_path.ends_with(".dll")) - return OK; PackData *pd = (PackData *)p_userdata; |
