diff options
Diffstat (limited to 'src/gallium/drivers/trace/SConscript')
-rw-r--r-- | src/gallium/drivers/trace/SConscript | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/SConscript b/src/gallium/drivers/trace/SConscript new file mode 100644 index 0000000000..35507e21e4 --- /dev/null +++ b/src/gallium/drivers/trace/SConscript @@ -0,0 +1,16 @@ +Import('*') + +env = env.Clone() + +trace = env.ConvenienceLibrary( + target = 'trace', + source = [ + 'tr_context.c', + 'tr_dump.c', + 'tr_screen.c', + 'tr_state.c', + 'tr_stream.c', + 'tr_winsys.c', + ]) + +Export('trace')
\ No newline at end of file |