ccdemos/SConscript
author Radek Brich <radek.brich@devl.cz>
Thu, 08 May 2008 09:21:25 +0200
branchpyrit
changeset 94 4c8abb8977dc
parent 93 96d65f841791
child 95 ca7d4c665531
permissions -rw-r--r--
update README update Doxygen docs scons option 'msvc' changed to 'mingw' as msvc is default and mingw must be turned on explicitly

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

l = []
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)