forked from bartvdbraak/blender
d5fde6c48b
Makes text editors identify SConscripts as Python, and syntax highlight properly.
19 lines
477 B
Python
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'])
|