source: src/wscript_build @ 41b985f

sampler
Last change on this file since 41b985f was 41b985f, checked in by Paul Brossier <piem@piem.org>, 8 years ago

Merge 'origin/master' into sampler

Conflicts:

.travis.yml
Makefile
examples/aubionotes.c
examples/parse_args.h
python/demos/demo_timestretch_online.py
python/lib/moresetuptools.py
python/tests/test_source.py
setup.py
src/io/source.c

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[0e355f6]1# vim:set syntax=python:
2
[eae5898]3uselib = []
[ccc55bd]4uselib += ['M']
[0318cc1]5uselib += ['FFTW3', 'FFTW3F']
6uselib += ['SAMPLERATE']
7uselib += ['SNDFILE']
[0015a54]8uselib += ['RUBBERBAND']
[ba0ba10]9uselib += ['AVCODEC']
10uselib += ['AVFORMAT']
11uselib += ['AVRESAMPLE']
12uselib += ['AVUTIL']
[f0ce36a1]13uselib += ['BLAS']
[8fcbd37]14uselib += ['PTHREAD']
[eae5898]15
[dc0e759]16source = ctx.path.ant_glob('*.c **/*.c')
[ccc55bd]17
[985a5d1]18ctx(features = 'c',
[dc0e759]19        source = source,
20        includes = ['.'],
[ccc55bd]21        use = uselib,
[dc0e759]22        target = 'lib_objects')
[afbd7e7]23
[985a5d1]24# build libaubio.so (cshlib) and/or libaubio.a (cstlib)
[19ddbf3]25if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
[a90e9d4]26    build_features = ['cstlib', 'cshlib']
[06dba46]27elif ctx.env['DEST_OS'] in ['win32', 'win64']:
[25e2001]28    build_features = ['cstlib', 'cshlib']
[fb5838a]29elif ctx.env['DEST_OS'] in ['emscripten']:
30    build_features = ['cstlib']
[0ec7113]31elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']:
32    # static in cflags, ...
33    build_features = ['cstlib']
34else:
35    # linux, darwin, android, mingw, ...
[3bf80b9]36    build_features = ['cstlib', 'cshlib']
[b712146]37
[8698499]38# also install static lib
39from waflib.Tools.c import cstlib
40from waflib.Tools.fc import fcstlib
41fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}'
42
[7fd1831]43for target in build_features:
[dc0e759]44    ctx(features = 'c ' + target,
[ccc55bd]45            use = uselib + ['lib_objects'],
[dc0e759]46            target = 'aubio',
47            vnum = ctx.env['LIB_VERSION'])
[000b090]48
49# install headers, except _priv.h ones
[0ec7113]50ctx.install_files('${INCLUDEDIR}/aubio/',
[dc0e759]51        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
52        relative_trick=True)
Note: See TracBrowser for help on using the repository browser.