* curve, gpencil, physics and preview don't have sources yet, so scons fails on that. Disabled for now Ton, when you actually put something in those dirs, remember to uncomment them in the editors/SConscript.
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
|
|
SConscript(['datafiles/SConscript',
|
|
'space_api/SConscript',
|
|
'util/SConscript',
|
|
'interface/SConscript',
|
|
'animation/SConscript',
|
|
'armature/SConscript',
|
|
'mesh/SConscript',
|
|
'object/SConscript',
|
|
#'curve/SConscript', enable this when there is actually code in curve/
|
|
#'gpencil/SConscript', enable this when there is actually code in gpencil/
|
|
#'physics/SConscript', enable this when there is actually code in physics/
|
|
#'preview/SConscript', enable this when there is actually code in preview/
|
|
'space_buttons/SConscript',
|
|
'space_file/SConscript',
|
|
'space_image/SConscript',
|
|
'space_info/SConscript',
|
|
'space_ipo/SConscript',
|
|
'space_node/SConscript',
|
|
'space_outliner/SConscript',
|
|
'space_time/SConscript',
|
|
'space_view3d/SConscript',
|
|
'space_sound/SConscript',
|
|
'space_action/SConscript',
|
|
'space_nla/SConscript',
|
|
'space_script/SConscript',
|
|
'space_text/SConscript',
|
|
'space_sequencer/SConscript',
|
|
'transform/SConscript',
|
|
'screen/SConscript',
|
|
'sculpt/SConscript'])
|