source: src/wscript_build @ 1ba359c

feature/autosinkfeature/cnnfeature/crepefix/ffmpeg5
Last change on this file since 1ba359c was 1ba359c, checked in by Paul Brossier <piem@piem.org>, 5 years ago

[waf] add flac detection

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