diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-11-20 10:45:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 10:45:56 +0100 |
commit | e6fd2d550ead5e69f0314a966a8eacb20073f3a4 (patch) | |
tree | b98f7ebfdd93eacd4e85166a7b1c8217bba53d12 /modules/tinyexr/SCsub | |
parent | b18744834f460d8d4a1f7594ab37a0104ba1ae2a (diff) | |
parent | 46d3effa994b344462a86f83ed3095247dc9e1bc (diff) |
Merge pull request #55115 from akien-mga/tinyexr-1.0.1
Diffstat (limited to 'modules/tinyexr/SCsub')
-rw-r--r-- | modules/tinyexr/SCsub | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/tinyexr/SCsub b/modules/tinyexr/SCsub index 30bde96fb4..bf9242cc16 100644 --- a/modules/tinyexr/SCsub +++ b/modules/tinyexr/SCsub @@ -20,6 +20,9 @@ env_tinyexr.Prepend(CPPPATH=[thirdparty_dir]) # Enable threaded loading with C++11. env_tinyexr.Append(CPPDEFINES=["TINYEXR_USE_THREAD"]) +# miniz is an external dependency, we could add it but we can instead rely +# on our existing bundled zlib. +env_tinyexr.Append(CPPDEFINES=[("TINYEXR_USE_MINIZ", 0)]) env_thirdparty = env_tinyexr.Clone() env_thirdparty.disable_warnings() |