Changeset 30250de for src/wscript_build


Ignore:
Timestamp:
Mar 1, 2013, 7:24:38 PM (12 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

File:
1 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,
Note: See TracChangeset for help on using the changeset viewer.