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: fec076627353092b241695c1e876b3f0fe026b48 (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('*.cpp')

incs = '. ../guardedalloc ../../source/blender/blenlib'

if env['WITH_BF_OCIO']:
    sources.remove('ocio_capi_stub.cpp')

    incs += ' ' + env['BF_OCIO_INC']

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

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