The basics for InfoSpace. Also added InfoSpace data to area by default, older files allowed to have nothing here (space empty). (prevents reported crasher in switching space info to others). Also: added ifdeffed code in readfile.c to debug missing memory frees from data read from files. (instead of "data from SCR" it will print the actual struct names).
21 lines
478 B
Python
21 lines
478 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
|
|
SConscript(['datafiles/SConscript',
|
|
'space_api/SConscript',
|
|
'util/SConscript',
|
|
'interface/SConscript',
|
|
'mesh/SConscript',
|
|
'object/SConscript',
|
|
'space_outliner/SConscript',
|
|
'space_time/SConscript',
|
|
'space_view3d/SConscript',
|
|
'space_ipo/SConscript',
|
|
'space_image/SConscript',
|
|
'space_node/SConscript',
|
|
'space_buttons/SConscript',
|
|
'space_info/SConscript',
|
|
'transform/SConscript',
|
|
'screen/SConscript'])
|