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: 9939690b66456f01aba933675c52799a2000060b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
Import ('env')

sources = env.Glob('intern/source/*.c')

incs = 'extern/include ../blenlib ../blenkernel ../makesdna ../editors/include'
incs += ' #/intern/guardedalloc ../render/extern/include'
incs += ' ../render/intern/include'

incs += ' ' + env['BF_OPENGL_INC']

env.BlenderLib ( 'bf_radiosity', sources, Split(incs), [], libtype='core', priority=60 )