feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampler
Last change
on this file since 9f060d1 was
db86a46,
checked in by Paul Brossier <piem@piem.org>, 10 years ago
|
{examples,tests}/wscript_build: add external libs
|
-
Property mode set to
100644
|
File size:
729 bytes
|
Rev | Line | |
---|
[6ed0f4e] | 1 | # vim:set syntax=python: |
---|
| 2 | |
---|
| 3 | for target_name in ctx.path.ant_glob('src/**/*.c'): |
---|
[dc0e759] | 4 | uselib = [] |
---|
[db86a46] | 5 | uselib += ['FFTW3', 'FFTW3F'] |
---|
| 6 | uselib += ['SAMPLERATE'] |
---|
| 7 | uselib += ['SNDFILE'] |
---|
| 8 | uselib += ['AVCODEC'] |
---|
| 9 | uselib += ['AVFORMAT'] |
---|
| 10 | uselib += ['AVRESAMPLE'] |
---|
| 11 | uselib += ['AVUTIL'] |
---|
| 12 | uselib += ['JACK'] |
---|
[dc0e759] | 13 | includes = ['../src', '.'] |
---|
| 14 | extra_source = [] |
---|
[6ed0f4e] | 15 | |
---|
[dc0e759] | 16 | bld(features = 'c cprogram test', |
---|
| 17 | lib = 'm', |
---|
| 18 | uselib = uselib, |
---|
| 19 | source = [target_name] + extra_source, |
---|
| 20 | target = str(target_name).split('.')[0], |
---|
| 21 | includes = includes, |
---|
| 22 | install_path = None, |
---|
| 23 | defines = 'AUBIO_UNSTABLE_API=1', |
---|
| 24 | cflags = ['-g'], |
---|
| 25 | use = 'aubio') |
---|
Note: See
TracBrowser
for help on using the repository browser.