Changeset 4084cd8 for src/wscript_build
- Timestamp:
- Oct 15, 2013, 7:06:15 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:
- 0c77921
- Parents:
- 2c2fe44 (diff), ef47246 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r2c2fe44 r4084cd8 12 12 # build libaubio 13 13 from waflib import Options 14 if Options.platform == 'ios': build_lib_func = ctx.stlib 15 else: build_lib_func = ctx.shlib 14 if Options.platform == 'ios': 15 build_lib_func = ctx.stlib 16 else: 17 build_lib_func = ctx.shlib 18 16 19 build_lib_func( 17 20 includes = ['.'], … … 25 28 # install headers, except _priv.h ones 26 29 ctx.install_files('${PREFIX}/include/aubio/', 27 28 30 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 29 31 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.