feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 2da7526 was
f0ce36a1,
checked in by Paul Brossier <piem@piem.org>, 9 years ago
|
wscript: check if we find atlas/cblas.h
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[0e355f6] | 1 | # vim:set syntax=python: |
---|
| 2 | |
---|
[eae5898] | 3 | uselib = [] |
---|
[0318cc1] | 4 | uselib += ['FFTW3', 'FFTW3F'] |
---|
| 5 | uselib += ['SAMPLERATE'] |
---|
| 6 | uselib += ['SNDFILE'] |
---|
[ba0ba10] | 7 | uselib += ['AVCODEC'] |
---|
| 8 | uselib += ['AVFORMAT'] |
---|
| 9 | uselib += ['AVRESAMPLE'] |
---|
| 10 | uselib += ['AVUTIL'] |
---|
[f0ce36a1] | 11 | uselib += ['BLAS'] |
---|
[eae5898] | 12 | |
---|
[dc0e759] | 13 | # build each source files |
---|
| 14 | source = ctx.path.ant_glob('*.c **/*.c') |
---|
[985a5d1] | 15 | ctx(features = 'c', |
---|
[dc0e759] | 16 | source = source, |
---|
| 17 | includes = ['.'], |
---|
| 18 | uselib = uselib, |
---|
| 19 | lib = 'm', |
---|
| 20 | target = 'lib_objects') |
---|
[afbd7e7] | 21 | |
---|
[985a5d1] | 22 | # build libaubio.so (cshlib) and/or libaubio.a (cstlib) |
---|
[19ddbf3] | 23 | if ctx.env['DEST_OS'] in ['ios', 'iosimulator']: |
---|
[a90e9d4] | 24 | build_features = ['cstlib', 'cshlib'] |
---|
[06dba46] | 25 | elif ctx.env['DEST_OS'] in ['win32', 'win64']: |
---|
| 26 | build_features = ['cshlib'] |
---|
[cdfc394] | 27 | else: #linux, darwin, android, mingw, ... |
---|
[7fd1831] | 28 | build_features = ['cshlib', 'cstlib'] |
---|
[b712146] | 29 | |
---|
[7fd1831] | 30 | for target in build_features: |
---|
[dc0e759] | 31 | ctx(features = 'c ' + target, |
---|
| 32 | use = ['lib_objects'], |
---|
[6d7acc8] | 33 | uselib = uselib, |
---|
[dc0e759] | 34 | lib = 'm', |
---|
| 35 | target = 'aubio', |
---|
| 36 | vnum = ctx.env['LIB_VERSION']) |
---|
[000b090] | 37 | |
---|
| 38 | # install headers, except _priv.h ones |
---|
[d41bc4d] | 39 | ctx.install_files('${PREFIX}/include/aubio/', |
---|
[dc0e759] | 40 | ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), |
---|
| 41 | relative_trick=True) |
---|
Note: See
TracBrowser
for help on using the repository browser.