Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2012-04-03 09:23:23 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2012-04-03 09:23:23 +0400
commit6d31d795bee5c8a56d86aaa39d89d54114dcac21 (patch)
tree8c72dc3e2828afda95f523560ac93d59cacf79aa /source/blender/imbuf
parent431eafe559a651a02eb333cee1e17998d702d864 (diff)
r45338 added multithreaded OpenEXR loading. Path to pthread was missing.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/openexr/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/imbuf/intern/openexr/SConscript b/source/blender/imbuf/intern/openexr/SConscript
index 082bb82c322..e590077db2b 100644
--- a/source/blender/imbuf/intern/openexr/SConscript
+++ b/source/blender/imbuf/intern/openexr/SConscript
@@ -15,4 +15,7 @@ incs += Split(env['BF_OPENEXR_INC'])
defs = ['WITH_OPENEXR']
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
+ incs.append(env['BF_PTHREADS_INC'])
+
env.BlenderLib ('bf_imbuf_openexr', source_files, incs, defs, libtype=['core','player'], priority = [225,180])