source: tests/wscript_build @ 6d7acc8

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 6d7acc8 was dc0e759, checked in by Paul Brossier <piem@piem.org>, 10 years ago

{tests,src,examples}/wscript_build: indent

  • Property mode set to 100644
File size: 510 bytes
Line 
1# vim:set syntax=python:
2
3for 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')
Note: See TracBrowser for help on using the repository browser.