mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 22:38:06 +02:00
15 lines
198 B
Python
15 lines
198 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
env.Prepend(LIBS = [gallium])
|
|
|
|
progs = [
|
|
'u_format_test'
|
|
]
|
|
|
|
for prog in progs:
|
|
prog = env.Program(
|
|
target = prog,
|
|
source = prog + '.c',
|
|
)
|