Changeset 0ec7113 for src/wscript_build
- Timestamp:
- Dec 1, 2016, 11:27:23 PM (8 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, sampler, yinfft+
- Children:
- 1b2669a
- Parents:
- 7a1bbbd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r7a1bbbd r0ec7113 27 27 elif ctx.env['DEST_OS'] in ['emscripten']: 28 28 build_features = ['cstlib'] 29 else: #linux, darwin, android, mingw, ... 29 elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']: 30 # static in cflags, ... 31 build_features = ['cstlib'] 32 else: 33 # linux, darwin, android, mingw, ... 30 34 build_features = ['cstlib', 'cshlib'] 31 35 … … 42 46 43 47 # install headers, except _priv.h ones 44 ctx.install_files('${ PREFIX}/include/aubio/',48 ctx.install_files('${INCLUDEDIR}/aubio/', 45 49 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 46 50 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.