Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e890ac69d766f8a7bf362354be29bde4c487700c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
Import ('env')


SConscript(['datafiles/SConscript',
			'space_api/SConscript',
			'util/SConscript',
			'interface/SConscript',
			'animation/SConscript',
			'mesh/SConscript',
			'object/SConscript',
			'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',		# XXX this should be moved near start of list, as many modules depend on this?
			'screen/SConscript'])