~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/python/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
1
2
Import ('extra_includes')
2
3
Import ('user_options_dict')
3
4
Import ('library_env')
6
7
 
7
8
source_files = ['BPY_interface.c',
8
9
                'BPY_menus.c',
 
10
                'api2_2x/Armature.c',
 
11
                'api2_2x/BezTriple.c',
 
12
                'api2_2x/BGL.c',
9
13
                'api2_2x/Blender.c',
10
 
                'api2_2x/Sys.c',
11
 
                'api2_2x/Registry.c',
12
 
                'api2_2x/Scene.c',
13
 
                'api2_2x/Types.c',
14
 
                'api2_2x/Object.c',
15
 
                'api2_2x/NMesh.c',
16
 
                'api2_2x/Material.c',
 
14
                'api2_2x/Bone.c',
 
15
                'api2_2x/Build.c',
17
16
                'api2_2x/Camera.c',
18
 
                'api2_2x/World.c',
 
17
                'api2_2x/CurNurb.c',
 
18
                'api2_2x/Curve.c',
 
19
                'api2_2x/Draw.c',
 
20
                'api2_2x/Effect.c',
 
21
                'api2_2x/Font.c',
 
22
                'api2_2x/EXPP_interface.c',
 
23
                'api2_2x/Ipocurve.c',
 
24
                'api2_2x/Ipo.c',
19
25
                'api2_2x/Lamp.c',
20
26
                'api2_2x/Lattice.c',
21
27
                'api2_2x/Library.c',
22
 
                'api2_2x/Curve.c',
23
 
                'api2_2x/Armature.c',
24
 
                'api2_2x/Bone.c',
25
 
                'api2_2x/Ipo.c',
26
 
                'api2_2x/Ipocurve.c',
27
 
                'api2_2x/BezTriple.c',
 
28
                'api2_2x/MTex.c',
 
29
                'api2_2x/Material.c',
 
30
                'api2_2x/Mathutils.c',
28
31
                'api2_2x/Metaball.c',
29
32
                'api2_2x/NLA.c',
30
 
                'api2_2x/Effect.c',
 
33
                'api2_2x/Noise.c',
 
34
                'api2_2x/NMesh.c',
 
35
                'api2_2x/Object.c',
31
36
                'api2_2x/Particle.c',
 
37
                'api2_2x/Registry.c',
 
38
                'api2_2x/Scene.c',
 
39
                'api2_2x/Sound.c',
 
40
                'api2_2x/Sys.c',
 
41
                'api2_2x/Types.c',
32
42
                'api2_2x/Wave.c',
33
 
                'api2_2x/Build.c',
 
43
                'api2_2x/Window.c',
 
44
                'api2_2x/World.c',
34
45
                'api2_2x/Image.c',
35
 
                'api2_2x/Window.c',
36
 
                'api2_2x/Draw.c',
37
 
                'api2_2x/BGL.c',
38
46
                'api2_2x/Text.c',
 
47
                'api2_2x/Text3d.c',
39
48
                'api2_2x/Texture.c',
40
 
                'api2_2x/MTex.c',
41
49
                'api2_2x/Noise.c',
42
 
                'api2_2x/vector.c',
 
50
                'api2_2x/charRGBA.c',
43
51
                'api2_2x/constant.c',
 
52
                'api2_2x/euler.c',
 
53
                'api2_2x/gen_utils.c',
 
54
                'api2_2x/logic.c',
44
55
                'api2_2x/matrix.c',
45
 
                'api2_2x/euler.c',
46
56
                'api2_2x/quat.c',
47
 
                'api2_2x/Mathutils.c',
48
57
                'api2_2x/rgbTuple.c',
49
 
                'api2_2x/gen_utils.c',
50
58
                'api2_2x/sceneRender.c',
51
 
                'api2_2x/EXPP_interface.c',
52
 
                'api2_2x/Noise.c']
 
59
                'api2_2x/sceneRadio.c',
 
60
                'api2_2x/vector.c',
 
61
                'api2_2x/windowTheme.c']
53
62
 
54
63
python_env.Append (CPPPATH = ['api2_2x',
55
64
                              '../blenkernel',
56
65
                              '../blenlib',
57
66
                              '../blenloader',
58
67
                              '../render/extern/include',
 
68
                              '../radiosity/extern/include',
59
69
                              '../makesdna',
60
70
                              '#/intern/guardedalloc',
61
71
                              '#/intern/bmfont',