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 180B

12345678910111213
  1. Import('env')
  2. if not env['GLUT']:
  3. Return()
  4. env = env.Clone()
  5. env.Prepend(LIBS = ['$GLUT_LIB'])
  6. env.Program(
  7. target = 'fp-tri',
  8. source = ['fp-tri.c'],
  9. )