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

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

cflags=''

sources = env.Glob('intern/*.c')
sources += env.Glob('operators/*.c')
sources += env.Glob('tools/*.c')

incs = [
	'./',
	'../blenlib',
	'../makesdna',
	'../blenkernel',
	'#/intern/guardedalloc',
	]

defs = []
env.BlenderLib ( libname = 'bf_bmesh', sources = sources, includes = Split(incs), libtype = ['core','player'], defines=defs, priority=[100, 100], compileflags=cflags )