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: 09868345fc48d3f2d569981752be60c9f3d6f931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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 ../../gpu'
incs += ' #/extern/glew/include'
incs += ' ../../python/' # python button eval

defs = []

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

if not env['WITH_BF_PYTHON']:
	defs.append('DISABLE_PYTHON')
	
env.BlenderLib ( 'bf_editors_interface', sources, Split(incs), defs, libtype=['core'], priority=[110] )