ccdemos/SConscript
author Radek Brich <radek.brich@devl.cz>
Thu, 15 May 2008 00:07:25 +0200
branchpyrit
changeset 96 9eb71e76c7fd
parent 95 ca7d4c665531
child 100 c005054bf4c1
permissions -rw-r--r--
added Python binding for material.h classes added raytracermodule.h header file for declarations updated car.py demo added texture.py demo (based on spheres_glass.py) all remaining 'centre' changed to more common 'center' added some more const's to material.h

Import('env sdlenv have_sdl lib')
myenv = sdlenv.Clone()
myenv.Append(LIBPATH=['#build/lib'])
myenv.Prepend(LIBS=['pyrit'])

l = []
if have_sdl:
	l.append( myenv.Program(['realtime.cc']) )
	l.append( myenv.Program(['realtime_bunny.cc']) )
	l.append( myenv.Program(['realtime_dragon.cc']) )
	l.append( myenv.Program(['spheres_shadow.cc']) )
	l.append( myenv.Program(['textures.cc']) )

env.Alias('cc-demos', l)