- Timestamp:
- Mar 22, 2013, 4:26:22 PM (12 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:
- 54a2ca2
- Parents:
- 5e1c04f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r5e1c04f rb712146 16 16 # build libaubio 17 17 from waflib import Options 18 if Options.platform == 'ios': build_lib_func = ctx.stlib 19 else: build_lib_func = ctx.shlib 18 if Options.platform == 'ios': 19 build_lib_func = ctx.stlib 20 else: 21 build_lib_func = ctx.shlib 22 20 23 build_lib_func( 21 24 includes = ['.'], … … 24 27 lib = 'm', 25 28 uselib = uselib, 29 install_path = '${PREFIX}/lib', 26 30 vnum = ctx.env['LIB_VERSION']) 27 31 28 32 # install headers, except _priv.h ones 29 33 ctx.install_files('${PREFIX}/include/aubio/', 30 31 34 ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']), 32 35 relative_trick=True)
Note: See TracChangeset
for help on using the changeset viewer.