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: 6765d57cb3e4dfa0585a4c7fc16617e98fdb6599 (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')

cflags=''

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

incs = [
	'./',
	'../blenfont',
	'../blenlib',
	'../makesdna',
	'../blenkernel',
	'#/intern/guardedalloc',
	'#/extern/bullet2/src',
	'#/intern/opennl/extern',	]

defs = []

if env['WITH_BF_BULLET']:
    defs.append('WITH_BULLET')

if env['WITH_BF_INTERNATIONAL']:
    defs.append('WITH_INTERNATIONAL')

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