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

SConscript « space_userpref « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b808a5a7c086d70afcf562b711fecd263f0cbcd (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_userpref', sources, Split(incs), defs, libtype=['core'], priority=[70] )