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:
authorKent Mein <mein@cs.umn.edu>2008-03-28 17:55:49 +0300
committerKent Mein <mein@cs.umn.edu>2008-03-28 17:55:49 +0300
commit967917ace9bd6be6e737dfa2fa0050676238814c (patch)
tree00a2ff992e83962a847a8a72cf1ceb46d04dee9e /source/creator
parent35db540b49abb18f17d9d4c4cf9cbfdeba9ec273 (diff)
This is patch:
[#8766] Scons build does not take into account WITH_BF_OPENEXR for source/creator Submitted By: Stephane SOPPERA Fixes -F EXR on the commandline... Kent
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/creator/SConscript b/source/creator/SConscript
index 833b56eccd8..cac9e895a97 100644
--- a/source/creator/SConscript
+++ b/source/creator/SConscript
@@ -19,4 +19,7 @@ if env['WITH_BF_BINRELOC']==1:
incs += ' ../../extern/binreloc/include'
defs.append('WITH_BINRELOC')
+if env['WITH_BF_OPENEXR']==1:
+ defs.append('WITH_OPENEXR')
+
env.BlenderLib ( libname = 'blender_creator', sources = Split(sources), includes = Split(incs), defines = defs, libtype='core', priority = 1 )