source: examples/wscript_build @ 6ed0f4e

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

waf: update to 1.7.9

  • Property mode set to 100644
File size: 592 bytes
RevLine 
[d62c32f]1# vim:set syntax=python:
2
3# build examples
[6ed0f4e]4utilsio = bld(
5        name = 'utilsio',
6        features = 'c',
7        includes = '../src',
8        source = ['utils.c', 'jackio.c'],
9        uselib = ['LASH', 'JACK'],
10        target = 'utilsio')
[110ac90]11
[d62c32f]12# loop over all *.c filenames in examples to build them all
[6ed0f4e]13for source_file in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c']):
14  bld.program(features = 'c cprogram',
[d62c32f]15      includes = '../src',
[6ed0f4e]16      use = ['aubio', 'LASH', 'JACK', 'SNDFILE', 'utilsio'],
17      source = str(source_file),
18      target = str(source_file).split('.')[0]
19    )
Note: See TracBrowser for help on using the repository browser.