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

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

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

incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../bmesh #/intern/guardedalloc'

# generated data files
import os
sources.extend((
	os.path.join(env['DATA_SOURCES'], "startup.blend.c"),
	os.path.join(env['DATA_SOURCES'], "preview.blend.c"),
	))

env.BlenderLib ( 'bf_editor_datafiles', sources, Split(incs), [], libtype=['core', 'player'], priority=[235, 30] )