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

SConscript « interface « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e44de5410f16696613630c6951987da2d3e40047 (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')

sources = env.Glob('*.c')

for source in env.Glob('*_api.c'):
	sources.remove(source)

incs = '../include ../../blenlib ../../blenfont ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc'
incs += ' #/extern/glew/include'
incs += ' ../../python/' # python button eval

defs = []

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

env.BlenderLib ( 'bf_editors_interface', sources, Split(incs), Split(defs), libtype=['core'], priority=[110] )