Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SConscript 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Import('*')
  2. progs = [
  3. 'aaindex',
  4. 'aapoly',
  5. 'aargb',
  6. 'accanti',
  7. 'accpersp',
  8. 'alpha3D',
  9. 'alpha',
  10. 'anti',
  11. 'bezcurve',
  12. 'bezmesh',
  13. 'checker',
  14. 'clip',
  15. 'colormat',
  16. 'cube',
  17. 'depthcue',
  18. 'dof',
  19. 'double',
  20. 'drawf',
  21. 'feedback',
  22. 'fog',
  23. 'fogindex',
  24. 'font',
  25. 'hello',
  26. 'image',
  27. 'light',
  28. 'lines',
  29. 'list',
  30. 'material',
  31. 'mipmap',
  32. 'model',
  33. 'movelight',
  34. 'nurbs',
  35. 'pickdepth',
  36. 'picksquare',
  37. 'plane',
  38. 'planet',
  39. 'polyoff',
  40. 'polys',
  41. 'quadric',
  42. 'robot',
  43. 'sccolorlight',
  44. 'scenebamb',
  45. 'scene',
  46. 'sceneflat',
  47. 'select',
  48. 'smooth',
  49. 'stencil',
  50. 'stroke',
  51. 'surface',
  52. 'teaambient',
  53. 'teapots',
  54. 'tess',
  55. 'tesswind',
  56. 'texbind',
  57. 'texgen',
  58. 'texprox',
  59. 'texsub',
  60. 'texturesurf',
  61. 'torus',
  62. 'trim',
  63. 'unproject',
  64. 'varray',
  65. 'wrap',
  66. ]
  67. for prog in progs:
  68. progs_env.Program(
  69. target = prog,
  70. source = prog + '.c',
  71. )