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: a4d21f3e440eab6a4e2b70d879194690f55a51de (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']:
    defs.append('WITH_OCIO')
    incs += ' ' + env['BF_OCIO_INC']

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

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