source: src/wscript_build @ 8470144

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

src/wscript_build: use 'use =', simplify

  • Property mode set to 100644
File size: 1.1 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
[7fd1831]32for 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]39ctx.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.