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
This commit is contained in:
Kent Mein 2008-03-28 14:55:49 +00:00
parent 35db540b49
commit 967917ace9

@ -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 )