Changeset c0fe2a9 for src/wscript_build


Ignore:
Timestamp:
Oct 15, 2013, 7:07:15 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:
47e067b
Parents:
d770fd2 (diff), 0c77921 (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.
Message:

Merge branch 'device' into develop

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    rd770fd2 rc0fe2a9  
    1212# build libaubio
    1313from waflib import Options
    14 if Options.platform == 'ios': build_lib_func = ctx.stlib
    15 else: build_lib_func = ctx.shlib
     14if Options.platform in ['ios', 'iosimulator']:
     15    build_lib_func = ctx.stlib
     16else:
     17    build_lib_func = ctx.shlib
     18
    1619build_lib_func(
    1720    includes = ['.'],
     
    2528# install headers, except _priv.h ones
    2629ctx.install_files('${PREFIX}/include/aubio/',
    27 
    2830    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    2931    relative_trick=True)
Note: See TracChangeset for help on using the changeset viewer.