Changeset cdfc394
- Timestamp:
- Nov 19, 2013, 11:56:47 PM (11 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r985a5d1 rcdfc394 18 18 # build libaubio.so (cshlib) and/or libaubio.a (cstlib) 19 19 if ctx.env['DEST_OS'] in ['ios', 'iosimulator']: 20 build_features = ['c stlib']21 else: #linux, darwin, android, windows, ...22 build_features = ['c shlib', 'cstlib']20 build_features = ['c', 'cstlib'] 21 else: #linux, darwin, android, mingw, ... 22 build_features = ['c', 'cshlib', 'cstlib'] 23 23 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']) 24 ctx(features = build_features, 25 use = ['lib_objects'], #source = source, 26 target = 'aubio', 27 install_path = '${PREFIX}/lib', 28 vnum = ctx.env['LIB_VERSION']) 30 29 31 30 # install headers, except _priv.h ones
Note: See TracChangeset
for help on using the changeset viewer.