Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. )