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

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

sources = env.Glob('*.c')
defs = []

incs = [
	'../include',
	'#extern/glew/include',
	'#/intern/guardedalloc',
	'../../makesdna',
	'../../makesrna',
	'../../blenkernel',
	'../../blenlib',
	'../../windowmanager',
	'../../blenfont',
	'../../blenloader',
]

if not env['WITH_BF_PYTHON']:
	defs.append('DISABLE_PYTHON')

env.BlenderLib ( 'bf_editors_space_console', sources, incs, defs, libtype=['core'], priority=[95] )