source: tests/wscript_build @ f2e9a8a

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

tests/wscript_build: do not install test programs

  • Property mode set to 100644
File size: 434 bytes
Line 
1# vim:set syntax=python:
2
3uselib = ['aubio']
4
5includes = ['../src', '.']
6programs_sources = ctx.path.ant_glob('src/**/*.c')
7
8for source_file in programs_sources:
9    bld(features = 'c cprogram test',
10            source = source_file,
11            target = str(source_file).split('.')[0],
12            includes = includes,
13            use = uselib,
14            install_path = None,
15            defines = 'AUBIO_UNSTABLE_API=1',
16       )
Note: See TracBrowser for help on using the repository browser.