* Minor cleanup of SCons files
- cleanup of boolean usage - use True and False now instead of 'true'/'false' or 0/1 - changed SConscripts accordingly
This commit is contained in:
@@ -18,17 +18,17 @@ SConscript(['avi/SConscript',
|
||||
'src/SConscript',
|
||||
'nodes/SConscript'])
|
||||
|
||||
if env['WITH_BF_YAFRAY'] == 1:
|
||||
if env['WITH_BF_YAFRAY']:
|
||||
SConscript(['yafray/SConscript'])
|
||||
|
||||
if env['WITH_BF_INTERNATIONAL'] == 1:
|
||||
if env['WITH_BF_INTERNATIONAL']:
|
||||
SConscript (['ftfont/SConscript'])
|
||||
|
||||
if env['WITH_BF_DDS'] == 1:
|
||||
if env['WITH_BF_DDS']:
|
||||
SConscript (['imbuf/intern/dds/SConscript'])
|
||||
|
||||
if env['WITH_BF_OPENEXR'] == 1:
|
||||
if env['WITH_BF_OPENEXR']:
|
||||
SConscript (['imbuf/intern/openexr/SConscript'])
|
||||
|
||||
if env['WITH_BF_QUICKTIME'] == 1:
|
||||
if env['WITH_BF_QUICKTIME']:
|
||||
SConscript (['quicktime/SConscript'])
|
||||
|
Reference in New Issue
Block a user