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: e88e896f09505e6addb5a6c4500393a078261851 (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
rad_env = Environment ()

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

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'])

rad_env.Library (target='#/lib/blender_radiosity', source=source_files)