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

SConscript « boolop « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0df706e9f772b392f6ff144aa2570c985d58a7d (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
29
30
31
32
33
34
#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')

bop_env = library_env.Copy ()

source_files = [
		'intern/BOP_BBox.cpp',
		'intern/BOP_BSPNode.cpp',
		'intern/BOP_BSPTree.cpp',
		'intern/BOP_Edge.cpp',
		'intern/BOP_Face.cpp',
		'intern/BOP_Face2Face.cpp',
		'intern/BOP_Interface.cpp',
		'intern/BOP_Material.cpp',
		'intern/BOP_MaterialContainer.cpp',
		'intern/BOP_MathUtils.cpp',
		'intern/BOP_Merge.cpp',
		'intern/BOP_Mesh.cpp',
		'intern/BOP_Segment.cpp',
		'intern/BOP_Splitter.cpp',
		'intern/BOP_Tag.cpp',
		'intern/BOP_Triangulator.cpp',
		'intern/BOP_Vertex.cpp'
		]

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

bop_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_bop', source=source_files)