feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since c1f0c1d was
ed090ff7,
checked in by Paul Brossier <piem@piem.org>, 11 years ago
|
src/wscript_build: move jack to examples
Signed-off-by: Paul Brossier <piem@piem.org>
|
-
Property mode set to
100644
|
File size:
592 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.