Changeset 30250de
- Timestamp:
- Mar 1, 2013, 7:24:38 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:
- 13ceb9d
- Parents:
- 5132505
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r5132505 r30250de 15 15 16 16 # build libaubio 17 ctx.shlib( 17 from waflib import Options 18 if Options.platform == 'ios': build_lib_func = ctx.stlib 19 else: build_lib_func = ctx.shlib 20 build_lib_func( 18 21 includes = ['.'], 19 22 source = source, -
wscript
r5132505 r30250de 228 228 'sounds/woodblock.aiff') 229 229 """ 230 231 def shutdown(bld): 232 from waflib import Options, Logs 233 if Options.platform == 'ios': 234 msg ='aubio built for ios, contact the author for a commercial license' 235 Logs.pprint('RED', msg) 236 msg =' Paul Brossier <piem@aubio.org>' 237 Logs.pprint('RED', msg)
Note: See TracChangeset
for help on using the changeset viewer.