source: src/wscript_build @ 8698499

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampleryinfft+
Last change on this file since 8698499 was 8698499, checked in by Paul Brossier <piem@piem.org>, 7 years ago

src/wscript_build: also install static library

See this post from waf author:

https://groups.google.com/forum/#!msg/waf-users/GBHPrmO_lDg/34VWYEaks40J

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[0e355f6]1# vim:set syntax=python:
2
[eae5898]3uselib = []
[ccc55bd]4uselib += ['M']
[0318cc1]5uselib += ['FFTW3', 'FFTW3F']
6uselib += ['SAMPLERATE']
7uselib += ['SNDFILE']
[ba0ba10]8uselib += ['AVCODEC']
9uselib += ['AVFORMAT']
10uselib += ['AVRESAMPLE']
11uselib += ['AVUTIL']
[f0ce36a1]12uselib += ['BLAS']
[eae5898]13
[dc0e759]14source = ctx.path.ant_glob('*.c **/*.c')
[ccc55bd]15
[985a5d1]16ctx(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]23if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
[a90e9d4]24    build_features = ['cstlib', 'cshlib']
[06dba46]25elif ctx.env['DEST_OS'] in ['win32', 'win64']:
[25e2001]26    build_features = ['cstlib', 'cshlib']
[fb5838a]27elif ctx.env['DEST_OS'] in ['emscripten']:
28    build_features = ['cstlib']
[cdfc394]29else: #linux, darwin, android, mingw, ...
[3bf80b9]30    build_features = ['cstlib', 'cshlib']
[b712146]31
[8698499]32# also install static lib
33from waflib.Tools.c import cstlib
34from waflib.Tools.fc import fcstlib
35fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}'
36
[7fd1831]37for target in build_features:
[dc0e759]38    ctx(features = 'c ' + target,
[ccc55bd]39            use = uselib + ['lib_objects'],
[dc0e759]40            target = 'aubio',
41            vnum = ctx.env['LIB_VERSION'])
[000b090]42
43# install headers, except _priv.h ones
[d41bc4d]44ctx.install_files('${PREFIX}/include/aubio/',
[dc0e759]45        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
46        relative_trick=True)
Note: See TracBrowser for help on using the repository browser.