diff options
-rw-r--r-- | tests/wscript | 20 | ||||
-rw-r--r-- | wscript | 8 |
2 files changed, 14 insertions, 14 deletions
diff --git a/tests/wscript b/tests/wscript index 0822f16..3ea7563 100644 --- a/tests/wscript +++ b/tests/wscript @@ -2,16 +2,16 @@ 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 + 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(): @@ -38,10 +38,10 @@ def build(bld): # Headers bld.install_files('${INCLUDEDIR}/raul', 'raul/*.hpp') bld.install_files('${INCLUDEDIR}/raul', 'raul/*.h') - + # Pkgconfig file autowaf.build_pc(bld, 'RAUL', RAUL_VERSION, 'GLIBMM GTHREAD') - + # Library obj = bld.new_task_gen('cxx', 'shlib') obj.source = ''' @@ -59,10 +59,10 @@ def build(bld): obj.uselib = 'GLIBMM GTHREAD' obj.install_path = '${LIBDIR}' obj.vnum = RAUL_LIB_VERSION - + # Unit tests bld.add_subdirs('tests') - + # Documentation autowaf.build_dox(bld, 'RAUL', RAUL_VERSION, srcdir, blddir) bld.install_files('${HTMLDIR}', blddir + '/default/doc/html/*') |