mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 22:30:12 +01:00
14 lines
182 B
Text
14 lines
182 B
Text
|
|
Import('env')
|
||
|
|
|
||
|
|
if not env['GLUT']:
|
||
|
|
Return()
|
||
|
|
|
||
|
|
env = env.Clone()
|
||
|
|
|
||
|
|
env.Prepend(LIBS = ['$GLUT_LIB'])
|
||
|
|
|
||
|
|
env.Program(
|
||
|
|
target = 'vp-tris',
|
||
|
|
source = ['vp-tris.c'],
|
||
|
|
)
|