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

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

source_files = env.Glob('*.c')

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

defs = []

env.BlenderLib ('bf_cineon', source_files, incs, defs, libtype=['core'], priority = [220])