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: a6c5ad984e2f14b644bcb6caf01d89a82ce03eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python
Import ('env')

source_files = ['openexr_api.cpp']

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

incs += Split(env['BF_OPENEXR_INC'])

defs = ['WITH_OPENEXR']

if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
    incs.append(env['BF_PTHREADS_INC'])

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