- Timestamp:
- Mar 30, 2013, 8:13:52 AM (12 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- 9499eefb
- Parents:
- 0318cc1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r0318cc1 r002563f 34 34 ctx.add_option('--enable-double', action='store_true', default=False, 35 35 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-fftw3 f', 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)') 40 40 ctx.add_option('--enable-complex', action='store_true', default=False, 41 41 help='compile with C99 complex') … … 121 121 122 122 # 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): 124 124 # one of fftwf or fftw3f 125 125 if (Options.options.enable_fftw3f != False):
Note: See TracChangeset
for help on using the changeset viewer.