feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampleryinfft+
Last change
on this file since 61a1e5d was
ccc55bd,
checked in by Paul Brossier <piem@piem.org>, 9 years ago
|
src/wscript_build: use 'use =', simplify
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[0e355f6] | 1 | # vim:set syntax=python: |
---|
| 2 | |
---|
[eae5898] | 3 | uselib = [] |
---|
[ccc55bd] | 4 | uselib += ['M'] |
---|
[0318cc1] | 5 | uselib += ['FFTW3', 'FFTW3F'] |
---|
| 6 | uselib += ['SAMPLERATE'] |
---|
| 7 | uselib += ['SNDFILE'] |
---|
[ba0ba10] | 8 | uselib += ['AVCODEC'] |
---|
| 9 | uselib += ['AVFORMAT'] |
---|
| 10 | uselib += ['AVRESAMPLE'] |
---|
| 11 | uselib += ['AVUTIL'] |
---|
[f0ce36a1] | 12 | uselib += ['BLAS'] |
---|
[eae5898] | 13 | |
---|
[dc0e759] | 14 | source = ctx.path.ant_glob('*.c **/*.c') |
---|
[ccc55bd] | 15 | |
---|
[985a5d1] | 16 | ctx(features = 'c', |
---|
[dc0e759] | 17 | source = source, |
---|
| 18 | includes = ['.'], |
---|
[ccc55bd] | 19 | use = uselib, |
---|
[dc0e759] | 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']: |
---|
[25e2001] | 26 | build_features = ['cstlib', 'cshlib'] |
---|
[fb5838a] | 27 | elif ctx.env['DEST_OS'] in ['emscripten']: |
---|
| 28 | build_features = ['cstlib'] |
---|
[cdfc394] | 29 | else: #linux, darwin, android, mingw, ... |
---|
[3bf80b9] | 30 | build_features = ['cstlib', 'cshlib'] |
---|
[b712146] | 31 | |
---|
[7fd1831] | 32 | for target in build_features: |
---|
[dc0e759] | 33 | ctx(features = 'c ' + target, |
---|
[ccc55bd] | 34 | use = uselib + ['lib_objects'], |
---|
[dc0e759] | 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.