source: examples/wscript_build @ 110ac90

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

examples/wscript_build, wscript: update

  • Property mode set to 100644
File size: 867 bytes
Line 
1if bld.env['SNDFILE']:
2  # build examples
3  sndfileio = bld.new_task_gen(features = 'c',
4      includes = '../src',
5      source = ['sndfileio.c'],
6      target = 'sndfileio')
7
8  utilsio = bld.new_task_gen(features = 'c',
9        includes = '../src',
10        add_objects = 'sndfileio',
11        source = ['utils.c', 'jackio.c'],
12        uselib = ['LASH', 'JACK', 'SNDFILE'],
13        target = 'utilsio')
14
15  # loop over all *.c filenames in examples to build them all
16  for target_name in bld.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c', 'sndfileio.c']):
17    bld.new_task_gen(features = 'c cprogram',
18        add_objects = 'utilsio',
19        includes = '../src',
20        uselib = ['LASH', 'JACK', 'SNDFILE'],
21        use = 'aubio',
22        source = target_name,
23        # program name is filename.c without the .c
24        target = str(target_name).split('.')[0])
Note: See TracBrowser for help on using the repository browser.