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

SConscript « render « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d09b1aa5ee0d32c6bdcf03596a0ecb5ea6cefe9 (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
Import ('user_options_dict')
Import ('library_env')

render_env = library_env.Copy ()

source_files = ['intern/source/RE_callbacks.c',
                'intern/source/edgeRender.c',
                'intern/source/envmap.c',
                'intern/source/errorHandler.c',
                'intern/source/gammaCorrectionTables.c',
                'intern/source/initrender.c',
                'intern/source/jitter.c',
                'intern/source/pixelblending.c',
                'intern/source/pixelshading.c',
                'intern/source/ray.c',
                'intern/source/renderHelp.c',
                'intern/source/renderPreAndPost.c',
                'intern/source/rendercore.c',
                'intern/source/renderdatabase.c',
                'intern/source/shadbuf.c',
                'intern/source/texture.c',
                'intern/source/vanillaRenderPipe.c',
                'intern/source/zbuf.c',
                'intern/source/zbufferdatastruct.c']


render_env.Append (CPPPATH = ['intern/include',
                              '#/intern/guardedalloc',
                              '../blenlib',
                              '../makesdna',
                              'extern/include',
                              '../blenkernel',
                              '../radiosity/extern/include',
                              '../imbuf',
                              '../quicktime',
                              '../include',
                              '../../kernel/gen_messaging',
                              '../yafray'])

render_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_render', source=source_files)