- Timestamp:
- Dec 11, 2016, 12:57:02 AM (8 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, sampler, yinfft+
- Children:
- 38b7a69
- Parents:
- dd93e80
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
rdd93e80 rf61ffb9 84 84 help_str = 'use CoreFoundation (darwin only) (auto)', 85 85 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)', 88 88 help_disable_str = 'do not use Atlas library') 89 89 add_option_enable_disable(ctx, 'wavread', default = True, … … 152 152 ctx.define('HAVE_SOURCE_APPLE_AUDIO', 1) 153 153 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') 154 157 if (ctx.options.enable_accelerate != False): 155 158 ctx.define('HAVE_ACCELERATE', 1) 156 159 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') 157 163 158 164 if target_platform in [ 'ios', 'iosimulator' ]:
Note: See TracChangeset
for help on using the changeset viewer.