Changeset 05ed7f5 for wscript


Ignore:
Timestamp:
Jul 2, 2020, 7:03:56 PM (4 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, fix/ffmpeg5, master
Children:
e7c6216
Parents:
7b8e51c (diff), bd183b3 (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 'feature/timestretch'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r7b8e51c r05ed7f5  
    8282            help_str = 'compile with samplerate (auto)',
    8383            help_disable_str = 'disable samplerate')
     84    add_option_enable_disable(ctx, 'rubberband', default = None,
     85            help_str = 'compile with rubberband (auto)',
     86            help_disable_str = 'disable rubberband')
    8487    add_option_enable_disable(ctx, 'memcpy', default = True,
    8588            help_str = 'use memcpy hacks (default)',
     
    141144                'samplerate',
    142145                'jack',
     146                'rubberband',
    143147                'avcodec',
    144148                'blas',
     
    416420                args = '--cflags --libs samplerate >= 0.0.15',
    417421                mandatory = ctx.options.enable_samplerate)
     422
     423    # check for librubberband
     424    if (ctx.options.enable_rubberband != False):
     425        ctx.check_cfg(package = 'rubberband', atleast_version = '1.3',
     426                args = '--cflags --libs',
     427                mandatory = ctx.options.enable_rubberband)
    418428
    419429    # check for jack
Note: See TracChangeset for help on using the changeset viewer.