Changeset 002563f for wscript


Ignore:
Timestamp:
Mar 30, 2013, 8:13:52 AM (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:
9499eefb
Parents:
0318cc1
Message:

wscript: improve help messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r0318cc1 r002563f  
    3434  ctx.add_option('--enable-double', action='store_true', default=False,
    3535      help='compile aubio in double precision mode')
    36   ctx.add_option('--enable-fftw', action='store_true', default=None,
    37       help='compile with ooura instead of fftw')
    38   ctx.add_option('--enable-fftw3f', action='store_true', default=None,
    39       help='compile with fftw3 instead of fftw3f')
     36  ctx.add_option('--enable-fftw3f', action='store_true', default=False,
     37      help='compile with fftw3f instead of ooura (recommended)')
     38  ctx.add_option('--enable-fftw3', action='store_true', default=False,
     39      help='compile with fftw3 instead of ooura (recommended in double precision)')
    4040  ctx.add_option('--enable-complex', action='store_true', default=False,
    4141      help='compile with C99 complex')
     
    121121
    122122  # optional dependancies using pkg-config
    123   if (Options.options.enable_fftw != False or Options.options.enable_fftw3f != False):
     123  if (Options.options.enable_fftw3 != False or Options.options.enable_fftw3f != False):
    124124    # one of fftwf or fftw3f
    125125    if (Options.options.enable_fftw3f != False):
Note: See TracChangeset for help on using the changeset viewer.