- Timestamp:
- Oct 3, 2016, 12:02:00 PM (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:
- 7daa881
- Parents:
- 82e0f86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r82e0f86 rf9a543e 87 87 help_str = 'use Atlas library (auto)', 88 88 help_disable_str = 'do not use Atlas library') 89 add_option_enable_disable(ctx, 'wavread', default = True, 90 help_str = 'compile with source_wavread (default)', 91 help_disable_str = 'do not compile source_wavread') 92 add_option_enable_disable(ctx, 'wavwrite', default = True, 93 help_str = 'compile with source_wavwrite (default)', 94 help_disable_str = 'do not compile source_wavwrite') 89 95 90 96 add_option_enable_disable(ctx, 'docs', default = None, … … 288 294 ctx.msg('Checking for all libav libraries', 'not found', color = 'YELLOW') 289 295 290 ctx.define('HAVE_WAVREAD', 1) 291 ctx.define('HAVE_WAVWRITE', 1) 296 if (ctx.options.enable_wavread != False): 297 ctx.define('HAVE_WAVREAD', 1) 298 ctx.msg('Checking if using source_wavread', ctx.options.enable_wavread and 'yes' or 'no') 299 if (ctx.options.enable_wavwrite!= False): 300 ctx.define('HAVE_WAVWRITE', 1) 301 ctx.msg('Checking if using sink_wavwrite', ctx.options.enable_wavwrite and 'yes' or 'no') 292 302 293 303 # use ATLAS
Note: See TracChangeset
for help on using the changeset viewer.