mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 05:00:09 +01:00
26 lines
365 B
Python
26 lines
365 B
Python
Import('env')
|
|
|
|
if not env['GLUT']:
|
|
Return()
|
|
|
|
env = env.Clone()
|
|
|
|
env.Prepend(LIBS = ['$GLUT_LIB'])
|
|
|
|
progs = [
|
|
'drawoverhead',
|
|
'teximage',
|
|
'vbo',
|
|
'vertexrate',
|
|
]
|
|
|
|
for prog in progs:
|
|
env.Program(
|
|
target = prog,
|
|
source = [
|
|
prog + '.c',
|
|
'common.c',
|
|
'glmain.c',
|
|
]
|
|
)
|
|
|