diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-30 15:31:02 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-30 15:31:02 +0200 |
commit | 2175397210b5e433e3cb63d1aad4a9d6e53aabec (patch) | |
tree | cf2629bb49b1f6e9b3ac9f119123bd2f1a3f0669 | |
parent | 3a80fce8be425daa45fe0b0b6fcf1125d16a5804 (diff) |
tinyexr: Enable C++11 threaded loading
-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 e7fd44fabd..84b3b4015b 100644 --- a/modules/tinyexr/SCsub +++ b/modules/tinyexr/SCsub @@ -15,6 +15,9 @@ thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] env_tinyexr.Prepend(CPPPATH=[thirdparty_dir]) +# Enable threaded loading with C++11. +env_tinyexr.Append(CPPDEFINES=["TINYEXR_USE_THREAD"]) + env_thirdparty = env_tinyexr.Clone() env_thirdparty.disable_warnings() env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources) |