diff options
| author | Rémi Verschelde | 2017-04-29 22:57:49 +0200 |
|---|---|---|
| committer | GitHub | 2017-04-29 22:57:49 +0200 |
| commit | de7eba887e9fe940dac0958836fa8fb778628d2a (patch) | |
| tree | 93b80fde60db3117b649190daa7918105a4d4e11 /editor/editor_export.cpp | |
| parent | ea9dd6c0c1997b2c6d8bba6caa1da965ef40804f (diff) | |
| parent | d4029aa51a0f0bce5dc73885af74b592e3aa33b7 (diff) | |
| download | godot-de7eba887e9fe940dac0958836fa8fb778628d2a.tar.gz godot-de7eba887e9fe940dac0958836fa8fb778628d2a.tar.zst godot-de7eba887e9fe940dac0958836fa8fb778628d2a.zip | |
Merge pull request #8572 from akien-mga/thirdparty
Moving more thirdparty stuff (minizip, some single-file external libs) to the thirdparty directory
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_export.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index 7dc5db4c7..b719e4a48 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -28,13 +28,13 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "editor_export.h" + #include "editor/editor_file_system.h" #include "editor/plugins/script_editor_plugin.h" #include "editor_node.h" #include "editor_settings.h" #include "global_config.h" #include "io/config_file.h" -#include "io/md5.h" #include "io/resource_loader.h" #include "io/resource_saver.h" #include "io/zip_io.h" @@ -43,6 +43,8 @@ #include "script_language.h" #include "version.h" +#include "thirdparty/misc/md5.h" + static int _get_pad(int p_alignment, int p_n) { int rest = p_n % p_alignment; |
