diff options
Diffstat (limited to 'tests/wscript')
-rw-r--r-- | tests/wscript | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/wscript b/tests/wscript new file mode 100644 index 0000000..4ab8936 --- /dev/null +++ b/tests/wscript @@ -0,0 +1,25 @@ +#!/usr/bin/env python + +def build(bld): + tests = ''' + path_test + thread_test + queue_test + ringbuffer_test + midi_ringbuffer_test + atomic_test + list_test + time_test + quantize_test + smf_test + table_test + ''' + + for i in tests.split(): + obj = bld.create_obj('cpp', 'program') + obj.source = i + '.cpp' + obj.includes = '..' + obj.uselib_local = 'libraul' + obj.target = i + obj.inst_var = 0 + |