This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/radiosity/SConscript
Nathan Letwory c2acbef851 * added SConscript for windowmanager
* tweak other SConscripts for editors/include
* commented BKE_bad_level_calls.h in writeframeserver.c - please check it doesn't break make builds

This compiles until final linking, which still fails.
2007-12-27 22:16:54 +00:00

13 lines
380 B
Python

#!/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 ( 'blender_radiosity', sources, Split(incs), [], libtype='core', priority=50 )