Add the WITH_OPENEXR to sconscript. I needed this for toni's latest SceneRender stuff to work. Strange that it worked ok on his computer without this.

This commit is contained in:
Matt Ebb 2006-02-07 19:04:24 +00:00
parent 3fe6fca3f6
commit 0b1cf0a01f

@ -14,5 +14,8 @@ defs = []
if env['WITH_BF_QUICKTIME']==1:
incs += ' ' + env['BF_QUICKTIME_INC']
defs.append('WITH_QUICKTIME')
if env['WITH_BF_OPENEXR'] == 1:
defs.append('WITH_OPENEXR')
env.BlenderLib ( libname='blender_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype=['core','game2'], priority = [60,115] )