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>2006-02-24 00:37:29 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-24 00:37:29 +0300
commit0ec3791d2d9c0c8641cffc64f277eaea12f28a42 (patch)
treed4dbc2a34f2ae12172dd75cd560a55fcffd7a26c /source/blender/render/SConscript
parent2f8f1b8cdfa40d4af7fef506e1a0eab3c7462277 (diff)
==SCons==
* Add check for WITH_BF_OPENEXR to ensure WITH_OPENEXR is specified when needed. Now workyworky again
Diffstat (limited to 'source/blender/render/SConscript')
-rw-r--r--source/blender/render/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/render/SConscript b/source/blender/render/SConscript
index 5fc0abb9e2a..b2b207d6c25 100644
--- a/source/blender/render/SConscript
+++ b/source/blender/render/SConscript
@@ -19,6 +19,9 @@ if env['WITH_BF_QUICKTIME'] == 1:
if env['WITH_BF_FFMPEG'] == 1:
defs.append('WITH_FFMPEG')
+if env['WITH_BF_OPENEXR']:
+ defs.append('WITH_OPENEXR')
+
if env['OURPLATFORM']=='linux2':
cflags='-pthread'