feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since a315be7 was
dc0e759,
checked in by Paul Brossier <piem@piem.org>, 11 years ago
|
{tests,src,examples}/wscript_build: indent
|
-
Property mode set to
100644
|
File size:
640 bytes
|
Line | |
---|
1 | # vim:set syntax=python: |
---|
2 | |
---|
3 | uselib = [] |
---|
4 | uselib += ['JACK'] |
---|
5 | |
---|
6 | utils_source = ['utils.c', 'jackio.c'] |
---|
7 | programs_source = ctx.path.ant_glob('*.c', excl = utils_source) |
---|
8 | |
---|
9 | # build examples |
---|
10 | bld(features = 'c', |
---|
11 | source = utils_source, |
---|
12 | includes = ['../src'], |
---|
13 | uselib = uselib, |
---|
14 | target = 'utilsio') |
---|
15 | |
---|
16 | # loop over all *.c filenames in examples to build them all |
---|
17 | for source_file in programs_source: |
---|
18 | bld(features = 'c cprogram', |
---|
19 | includes = '../src', |
---|
20 | lib = 'm', |
---|
21 | use = ['aubio', 'utilsio'], |
---|
22 | source = source_file, |
---|
23 | target = str(source_file).split('.')[0] |
---|
24 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.