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

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

Import('env')

sources = env.Glob('*.cc')

incs = '. ../guardedalloc ../../source/blender/blenlib'
defs = []

if env['WITH_BF_OCIO']:
    incs += ' ' + env['BF_OCIO_INC']
    defs.append('WITH_OCIO')

    if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
        incs += ' ' + env['BF_BOOST_INC']
else:
    sources.remove('ocio_capi.cc')

env.BlenderLib( 'bf_intern_opencolorio', sources, Split(incs), defs, libtype=['extern','player'], priority=[10, 185])