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: a86b76bb4b1f76278ced8981dc54eabe7b7a1279 (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 ../include'
incs += ' #/intern/guardedalloc ../render/extern/include'
incs += ' ../render/intern/include ../blenloader'

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

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