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

SConscript « imbuf « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7461a89b7095d3e1b967c94325f8e7f5f8c11c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
imbuf_env = Environment()

# Import the C flags set in the SConstruct file
Import ('cflags')
Import ('cxxflags')
Import ('defines')
Import ('extra_includes')
imbuf_env.Append (CCFLAGS = cflags)
imbuf_env.Append (CXXFLAGS = cxxflags)
imbuf_env.Append (CPPDEFINES = defines)

source_files = ['intern/allocimbuf.c',
                'intern/amiga.c',
                'intern/anim.c',
                'intern/anim5.c',
                'intern/antialias.c',
                'intern/bitplanes.c',
                'intern/bmp_decode.c',
                'intern/cmap.c',
                'intern/cspace.c',
                'intern/data.c',
                'intern/dither.c',
                'intern/divers.c',
                'intern/filter.c',
                'intern/ham.c',
                'intern/hamx.c',
                'intern/iff.c',
                'intern/imageprocess.c',
                'intern/iris.c',
                'intern/jpeg.c',
                'intern/png.c',
                'intern/readimage.c',
                'intern/rectop.c',
                'intern/rotate.c',
                'intern/scaling.c',
                'intern/targa.c',
                'intern/util.c',
                'intern/writeimage.c']

imbuf_env.Append (CPPPATH = ['.',
                             '../makesdna',
                             '#/intern/guardedalloc',
                             '../blenlib',
                             '../avi',
                             '../quicktime',
                             '../blenkernel'])

imbuf_env.Append (CPPPATH = extra_includes)
imbuf_env.Library (target='#/lib/blender_imbuf', source=source_files)