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

SConscript « radiosity « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c7205e6a830fb574bf593e988466ed5293d1b1e (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
#!/usr/bin/python
Import ('user_options_dict')
Import ('library_env')

rad_env = library_env.Copy ()

source_files = ['intern/source/raddisplay.c',
                'intern/source/radfactors.c',
                'intern/source/radrender.c',
                'intern/source/radio.c',
                'intern/source/radnode.c',
                'intern/source/radpostprocess.c',
                'intern/source/radpreprocess.c']

rad_env.Append (CPPPATH = ['extern/include',
                           '../blenlib',
                           '../blenkernel',
                           '../makesdna',
                           '../include',
                           '#/intern/guardedalloc',
                           '../render/extern/include',
                           '../render/intern/include'])

rad_env.Append (CPPPATH = user_options_dict['OPENGL_INCLUDE'])

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