source: src/wscript_build @ bad88364

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

Merge branch 'master' into sampler

  • 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']
[cd133ba]11uselib += ['SWRESAMPLE']
[ba0ba10]12uselib += ['AVRESAMPLE']
13uselib += ['AVUTIL']
[f0ce36a1]14uselib += ['BLAS']
[8fcbd37]15uselib += ['PTHREAD']
[eae5898]16
[dc0e759]17source = ctx.path.ant_glob('*.c **/*.c')
[ccc55bd]18
[985a5d1]19ctx(features = 'c',
[dc0e759]20        source = source,
21        includes = ['.'],
[ccc55bd]22        use = uselib,
[dc0e759]23        target = 'lib_objects')
[afbd7e7]24
[985a5d1]25# build libaubio.so (cshlib) and/or libaubio.a (cstlib)
[19ddbf3]26if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
[a90e9d4]27    build_features = ['cstlib', 'cshlib']
[06dba46]28elif ctx.env['DEST_OS'] in ['win32', 'win64']:
[25e2001]29    build_features = ['cstlib', 'cshlib']
[fb5838a]30elif ctx.env['DEST_OS'] in ['emscripten']:
31    build_features = ['cstlib']
[0ec7113]32elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']:
33    # static in cflags, ...
34    build_features = ['cstlib']
35else:
36    # linux, darwin, android, mingw, ...
[3bf80b9]37    build_features = ['cstlib', 'cshlib']
[b712146]38
[8698499]39# also install static lib
40from waflib.Tools.c import cstlib
41from waflib.Tools.fc import fcstlib
42fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}'
43
[7fd1831]44for target in build_features:
[dc0e759]45    ctx(features = 'c ' + target,
[ccc55bd]46            use = uselib + ['lib_objects'],
[dc0e759]47            target = 'aubio',
48            vnum = ctx.env['LIB_VERSION'])
[000b090]49
50# install headers, except _priv.h ones
[0ec7113]51ctx.install_files('${INCLUDEDIR}/aubio/',
[dc0e759]52        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
53        relative_trick=True)
Note: See TracBrowser for help on using the repository browser.