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: 47f83868baacf9bb7713627c1abeb9ce6cee907e (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,180])