- [SCONS] update to use the new csg script if you set the variable to true. I keep it to this file for the moment, since building this is not always successfull. So if you want to use this instead of the current method, set NEW_CSG in this file to true.

This commit is contained in:
Nathan Letwory 2004-03-09 18:21:28 +00:00
parent 5bd9534103
commit 98bed4ca32

@ -7,5 +7,11 @@ SConscript(['SoundSystem/SConscript',
'container/SConscript',
'memutil/SConscript/',
'decimation/SConscript',
'bsp/SConscript',
'iksolver/SConscript'])
NEW_CSG='false'
if NEW_CSG=='false':
SConscript(['bsp/SConscript'])
else:
SConscript(['csg/SConscript'])