scons: fix WITH_PSD compiling, still i think muddled naming is used here, todo: cleanup

This commit is contained in:
Jens Verwiebe 2013-10-11 21:37:25 +00:00
parent b83f755542
commit 356de10534
2 changed files with 4 additions and 2 deletions

View File

@ -56,7 +56,7 @@ if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', '
incs += ' ../../../intern/utfconv'
if env['WITH_BF_OIIO']:
defs.append('WITH_OIIO')
defs.append('WITH_OPENIMAGEIO')
if env['WITH_BF_OPENEXR']:
defs.append('WITH_OPENEXR')

View File

@ -38,8 +38,10 @@ incs = ['.',
'#/intern/guardedalloc',
'../../../makesdna',
'#/intern/utfconv']
incs += Split(env['BF_OIIO_INC'])
defs = ['WITH_PSD']
defs = ['WITH_OPENIMAGEIO']
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
incs.append(env['BF_PTHREADS_INC'])