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

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

source_files = ['dds_api.cpp', 'DirectDrawSurface.cpp', 'Stream.cpp', 'BlockDXT.cpp', 'ColorBlock.cpp', 'Image.cpp', 'FlipDXT.cpp']

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


defs = ['WITH_DDS']

env.BlenderLib ('bf_imbuf_dds', source_files, incs, defs, libtype=['core','player'], priority = [230,190])