mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 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"
 |