15 lines
247 B
C++
Executable File
15 lines
247 B
C++
Executable File
#if defined(_WIN32)
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
#endif
|
|
|
|
// We want multi-threading
|
|
#define TINYEXR_USE_THREAD 1
|
|
|
|
// We want to use libz
|
|
#define TINYEXR_USE_MINIZ 0
|
|
#define TINYEXR_IMPLEMENTATION
|
|
#include <zlib.h>
|
|
#include "tinyexr.h"
|