Changeset cdfc394


Ignore:
Timestamp:
Nov 19, 2013, 11:56:47 PM (10 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
d4c0932
Parents:
985a5d1
Message:

src/wscript_build: simplify

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r985a5d1 rcdfc394  
    1818# build libaubio.so (cshlib) and/or libaubio.a (cstlib)
    1919if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
    20     build_features = ['cstlib']
    21 else: #linux, darwin, android, windows, ...
    22     build_features = ['cshlib', 'cstlib']
     20    build_features = ['c', 'cstlib']
     21else: #linux, darwin, android, mingw, ...
     22    build_features = ['c', 'cshlib', 'cstlib']
    2323
    24 for feat in build_features:
    25     ctx(features = 'c ' + feat,
    26         use = ['lib_objects'], #source = source,
    27         target = 'aubio',
    28         install_path = '${PREFIX}/lib',
    29         vnum = ctx.env['LIB_VERSION'])
     24ctx(features = build_features,
     25    use = ['lib_objects'], #source = source,
     26    target = 'aubio',
     27    install_path = '${PREFIX}/lib',
     28    vnum = ctx.env['LIB_VERSION'])
    3029
    3130# install headers, except _priv.h ones
Note: See TracChangeset for help on using the changeset viewer.