mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
46d3effa99
Removes miniz as a bundled dependency, relies on our own zlib instead. Includes a couple commits ahead of `v1.0.1` tag to fix MinGW builds.
13 lines
221 B
C++
13 lines
221 B
C++
#if defined(_WIN32)
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#endif
|
|
|
|
// -- GODOT start --
|
|
#include <zlib.h> // Should come before including tinyexr.
|
|
// -- GODOT end --
|
|
|
|
#define TINYEXR_IMPLEMENTATION
|
|
#include "tinyexr.h"
|