mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-15 22:08:17 +02:00
26 lines
525 B
Python
26 lines
525 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
nv50 = env.ConvenienceLibrary(
|
|
target = 'nv50',
|
|
source = [
|
|
'nv50_buffer.c',
|
|
'nv50_clear.c',
|
|
'nv50_context.c',
|
|
'nv50_draw.c',
|
|
'nv50_miptree.c',
|
|
'nv50_query.c',
|
|
'nv50_program.c',
|
|
'nv50_resource.c',
|
|
'nv50_screen.c',
|
|
'nv50_state.c',
|
|
'nv50_state_validate.c',
|
|
'nv50_surface.c',
|
|
'nv50_tex.c',
|
|
'nv50_transfer.c',
|
|
'nv50_vbo.c',
|
|
'nv50_push.c',
|
|
])
|
|
|
|
Export('nv50')
|