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

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

source_files = ['openexr_api.cpp']

incs = ['.',
	'../../../blenkernel',
	'../../',
	'..',
	'../../../blenlib',
	'intern/include',
	'#/intern/guardedalloc',
	'../../../makesdna']
incs += Split(env['BF_OPENEXR_INC'])

defs = ['WITH_OPENEXR']

env.BlenderLib ('bf_openexr', source_files, incs, defs, libtype=['core','player'], priority = [225, 85])