projects
/
blender.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Finally change SConscript tabs to spaces.
[blender.git]
/
source
/
blender
/
imbuf
/
intern
/
openexr
/
SConscript
1
#!/usr/bin/python
2
Import ('env')
3
4
source_files = ['openexr_api.cpp']
5
6
incs = ['.',
7
'../../../blenkernel',
8
'../../',
9
'..',
10
'../../../blenlib',
11
'intern/include',
12
'#/intern/guardedalloc',
13
'../../../makesdna']
14
incs += Split(env['BF_OPENEXR_INC'])
15
16
defs = ['WITH_OPENEXR']
17
18
env.BlenderLib ('bf_openexr', source_files, incs, defs, libtype=['core','player'], priority = [225,180])