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

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

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

incs = ['.',
	'../../../blenkernel',
	'../../',
	'..',
	'../../../blenlib',
	'intern/include',
	'#/intern/guardedalloc',
	'../../../makesdna']

defs = []

env.BlenderLib ('bf_cineon', source_files, incs, defs, libtype=['core','player'], priority = [120, 75])