mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 04:28:10 +02:00
15 lines
244 B
Python
15 lines
244 B
Python
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
trace = env.ConvenienceLibrary(
|
|
target = 'trace',
|
|
source = [
|
|
'tr_context.c',
|
|
'tr_dump.c',
|
|
'tr_dump_state.c',
|
|
'tr_screen.c',
|
|
'tr_texture.c',
|
|
])
|
|
|
|
Export('trace')
|