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: 9723a7fcfe2d6b9a08fb18815a96109186eb6fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python
Import ('env')

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

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

defs = []

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

	if env['WITH_BF_SOLID']:
		defs.append('USE_SUMO_SOLID')

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