Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SConscript 277B

123456789101112131415161718
  1. Import('*')
  2. progs = [
  3. 'fp-tri',
  4. 'tri-depth',
  5. 'tri-depth2',
  6. 'tri-depthwrite',
  7. 'tri-depthwrite2',
  8. 'tri-param',
  9. 'tri-tex',
  10. 'point-position',
  11. ]
  12. for prog in progs:
  13. progs_env.Program(
  14. target = prog,
  15. source = [prog + '.c'],
  16. )