blender/intern/SConscript
Kester Maddock d5fde6c48b Added #!/usr/bin/python standard script identifier to the start of SConscript files.
Makes text editors identify SConscripts as Python, and syntax highlight properly.
2004-05-16 13:07:20 +00:00

19 lines
477 B
Python

#!/usr/bin/python
SConscript(['SoundSystem/SConscript',
'string/SConscript',
'ghost/SConscript',
'guardedalloc/SConscript',
'bmfont/SConscript',
'moto/SConscript',
'container/SConscript',
'memutil/SConscript/',
'decimation/SConscript',
'iksolver/SConscript'])
NEW_CSG='false'
if NEW_CSG=='false':
SConscript(['bsp/SConscript'])
else:
SConscript(['csg/SConscript'])