source: tests/wscript_build @ 09fab95

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 09fab95 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
RevLine 
[6ed0f4e]1# vim:set syntax=python:
2
[21def97]3uselib = ['aubio']
[58cffee]4
5includes = ['../src', '.']
[21def97]6programs_sources = ctx.path.ant_glob('src/**/*.c')
[58cffee]7
[21def97]8for source_file in programs_sources:
[dc0e759]9    bld(features = 'c cprogram test',
[21def97]10            source = source_file,
11            target = str(source_file).split('.')[0],
[dc0e759]12            includes = includes,
[21def97]13            use = uselib,
[09fab95]14            install_path = None,
[dc0e759]15            defines = 'AUBIO_UNSTABLE_API=1',
[21def97]16       )
Note: See TracBrowser for help on using the repository browser.