tests/: add void to prototypes to build with -Wstrict-prototypes
[aubio.git] / tests / wscript_build
1 # vim:set syntax=python:
2
3 for target_name in ctx.path.ant_glob('src/**/*.c'):
4   uselib = []
5   includes = ['../src', '.']
6   extra_source = []
7
8   bld(features = 'c cprogram test',
9       lib = 'm',
10       uselib = uselib,
11       source = [target_name] + extra_source,
12       target = str(target_name).split('.')[0],
13       includes = includes,
14       install_path = None,
15       defines = 'AUBIO_UNSTABLE_API=1',
16       cflags = ['-g'],
17       use = 'aubio')
18