12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Import('*')
-
- progs = [
- 'aaindex',
- 'aapoly',
- 'aargb',
- 'accanti',
- 'accpersp',
- 'alpha3D',
- 'alpha',
- 'anti',
- 'bezcurve',
- 'bezmesh',
- 'checker',
- 'clip',
- 'colormat',
- 'cube',
- 'depthcue',
- 'dof',
- 'double',
- 'drawf',
- 'feedback',
- 'fog',
- 'fogindex',
- 'font',
- 'hello',
- 'image',
- 'light',
- 'lines',
- 'list',
- 'material',
- 'mipmap',
- 'model',
- 'movelight',
- 'nurbs',
- 'pickdepth',
- 'picksquare',
- 'plane',
- 'planet',
- 'polyoff',
- 'polys',
- 'quadric',
- 'robot',
- 'sccolorlight',
- 'scenebamb',
- 'scene',
- 'sceneflat',
- 'select',
- 'smooth',
- 'stencil',
- 'stroke',
- 'surface',
- 'teaambient',
- 'teapots',
- 'tess',
- 'tesswind',
- 'texbind',
- 'texgen',
- 'texprox',
- 'texsub',
- 'texturesurf',
- 'torus',
- 'trim',
- 'unproject',
- 'varray',
- 'wrap',
- ]
-
- for prog in progs:
- progs_env.Program(
- target = prog,
- source = prog + '.c',
- )
|