Changeset 30250de


Ignore:
Timestamp:
Mar 1, 2013, 7:24:38 PM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
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
Message:

wscript: build a static lib for iphone, add a message about licensing

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    r5132505 r30250de  
    1515
    1616# build libaubio
    17 ctx.shlib(
     17from waflib import Options
     18if Options.platform == 'ios': build_lib_func = ctx.stlib
     19else: build_lib_func = ctx.shlib
     20build_lib_func(
    1821    includes = ['.'],
    1922    source = source,
  • wscript

    r5132505 r30250de  
    228228      'sounds/woodblock.aiff')
    229229  """
     230
     231def 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.