Changeset f61ffb9


Ignore:
Timestamp:
Dec 11, 2016, 12:57:02 AM (7 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, sampler, yinfft+
Children:
38b7a69
Parents:
dd93e80
Message:

wscript: verbose frameworks, default to no atlas check

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    rdd93e80 rf61ffb9  
    8484            help_str = 'use CoreFoundation (darwin only) (auto)',
    8585            help_disable_str = 'do not use CoreFoundation framework')
    86     add_option_enable_disable(ctx, 'atlas', default = None,
    87             help_str = 'use Atlas library (auto)',
     86    add_option_enable_disable(ctx, 'atlas', default = False,
     87            help_str = 'use Atlas library (no)',
    8888            help_disable_str = 'do not use Atlas library')
    8989    add_option_enable_disable(ctx, 'wavread', default = True,
     
    152152            ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1)
    153153            ctx.define('HAVE_SINK_APPLE_AUDIO', 1)
     154            ctx.msg('Checking for AudioToolbox.framework', 'yes')
     155        else:
     156            ctx.msg('Checking for AudioToolbox.framework', 'no (disabled)', color = 'YELLOW')
    154157        if (ctx.options.enable_accelerate != False):
    155158            ctx.define('HAVE_ACCELERATE', 1)
    156159            ctx.env.FRAMEWORK += ['Accelerate']
     160            ctx.msg('Checking for Accelerate framework', 'yes')
     161        else:
     162            ctx.msg('Checking for AudioToolbox framework', 'no (disabled)', color = 'YELLOW')
    157163
    158164    if target_platform in [ 'ios', 'iosimulator' ]:
Note: See TracChangeset for help on using the changeset viewer.