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

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

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

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

defs = []

if env['WITH_BF_GAMEENGINE']:
	defs.append('GAMEBLENDER=1')

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