2009-02-01 12:00:07 +00:00
|
|
|
Import('*')
|
2008-11-21 03:40:48 +09:00
|
|
|
|
|
|
|
progs = [
|
2009-12-31 21:10:25 +00:00
|
|
|
'arbfplight',
|
|
|
|
'arbfslight',
|
|
|
|
'arbocclude',
|
2010-03-05 18:42:42 +01:00
|
|
|
'arbocclude2',
|
2009-12-31 21:10:25 +00:00
|
|
|
'bounce',
|
|
|
|
'clearspd',
|
|
|
|
'copypix',
|
|
|
|
'cubemap',
|
2010-02-19 11:09:05 -07:00
|
|
|
'dinoshade',
|
2010-01-29 14:01:12 -07:00
|
|
|
'dissolve',
|
2009-12-31 21:10:25 +00:00
|
|
|
'drawpix',
|
|
|
|
'engine',
|
|
|
|
'fbo_firecube',
|
2010-02-19 11:09:05 -07:00
|
|
|
'fbotexture',
|
2009-12-31 21:10:25 +00:00
|
|
|
'fire',
|
|
|
|
'fogcoord',
|
|
|
|
'fplight',
|
|
|
|
'fslight',
|
|
|
|
'gamma',
|
|
|
|
'gearbox',
|
|
|
|
'gears',
|
|
|
|
'geartrain',
|
|
|
|
'glinfo',
|
|
|
|
'gloss',
|
|
|
|
'gltestperf',
|
|
|
|
'ipers',
|
|
|
|
'isosurf',
|
|
|
|
'lodbias',
|
|
|
|
'morph3d',
|
|
|
|
'multiarb',
|
|
|
|
'paltex',
|
|
|
|
'pointblast',
|
2010-02-19 11:09:05 -07:00
|
|
|
'projtex',
|
2009-12-31 21:10:25 +00:00
|
|
|
'ray',
|
|
|
|
'readpix',
|
|
|
|
'reflect',
|
|
|
|
'renormal',
|
|
|
|
'shadowtex',
|
|
|
|
'singlebuffer',
|
|
|
|
'spectex',
|
|
|
|
'spriteblast',
|
|
|
|
'stex3d',
|
|
|
|
'teapot',
|
|
|
|
'terrain',
|
|
|
|
'tessdemo',
|
|
|
|
'texcyl',
|
|
|
|
'texenv',
|
|
|
|
'textures',
|
|
|
|
'trispd',
|
|
|
|
'tunnel',
|
|
|
|
'tunnel2',
|
|
|
|
'vao_demo',
|
|
|
|
'winpos',
|
2008-11-21 03:40:48 +09:00
|
|
|
]
|
|
|
|
|
|
|
|
for prog in progs:
|
2009-12-31 21:10:25 +00:00
|
|
|
progs_env.Program(
|
2008-11-21 03:40:48 +09:00
|
|
|
target = prog,
|
|
|
|
source = prog + '.c',
|
|
|
|
)
|
2009-02-01 12:00:07 +00:00
|
|
|
|
2009-12-31 21:10:25 +00:00
|
|
|
progs_env.Program(
|
2009-02-01 12:00:07 +00:00
|
|
|
target = 'rain',
|
|
|
|
source = [
|
|
|
|
'rain.cxx',
|
|
|
|
'particles.cxx',
|
|
|
|
]
|
|
|
|
)
|