File: SConscript

package info (click to toggle)
blender 2.36-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 34,220 kB
  • ctags: 42,784
  • sloc: ansic: 280,846; cpp: 123,984; python: 18,428; sh: 7,178; makefile: 3,296; perl: 2,082; xml: 484; java: 8
file content (30 lines) | stat: -rw-r--r-- 897 bytes parent folder | download
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
29
30
#!/usr/bin/python
csg_env = Environment()

# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
csg_env.Append (CCFLAGS = cflags)
csg_env.Append (CXXFLAGS = cxxflags)
csg_env.Append (CPPDEFINES = defines)

source_files = ['intern/CSG_BBoxTree.cpp',
				'intern/CSG_ConnectedMeshWrapper.inl',
				'intern/CSG_Math.inl',
				'intern/CSG_Triangulate.inl',
				'intern/blender/CSG_CsgOp.cpp',
				'intern/blender/CSG_Interface.cpp',
				'intern/CSG_BooleanOp.inl',
				'intern/CSG_MeshWrapper.inl',
				'intern/MT_Line3.cpp'
				]

csg_env.Append (CPPPATH = ['intern',
                           '../container',
                           '../moto/include',
                           '../memutil',
                           'intern/blender',
                           'extern'])

csg_env.Library (target='#/lib/blender_BSP', source=source_files)