- Timestamp:
- Nov 21, 2013, 8:09:53 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:
- fda4fd7
- Parents:
- f6ee160
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
rf6ee160 r7fd1831 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 ', 'cstlib']20 build_features = ['cstlib'] 21 21 else: #linux, darwin, android, mingw, ... 22 build_features = ['c ', 'cshlib', 'cstlib']22 build_features = ['cshlib', 'cstlib'] 23 23 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']) 24 for target in build_features: 25 ctx(features = 'c ' + target, 26 use = ['lib_objects'], #source = source, 27 target = 'aubio', 28 install_path = '${PREFIX}/lib', 29 vnum = ctx.env['LIB_VERSION']) 29 30 30 31 # install headers, except _priv.h ones
Note: See TracChangeset
for help on using the changeset viewer.