Changeset 2e4fb04
- Timestamp:
- Nov 5, 2009, 11:21:32 PM (15 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:
- 3e17aed
- Parents:
- 16ed726
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r16ed726 r2e4fb04 24 24 opt.add_option('--disable-lash', action='store_true', default=False, 25 25 help='compile without lash support') 26 opt.add_option('--disable-libsamplerate', action='store_true', default=False, 27 help='compile without libsamplerate support') 26 28 opt.add_option('--with-target-platform', type='string', 27 29 help='set target platform for cross-compilation', dest='target_platform') … … 55 57 conf.check(header_name='complex.h') 56 58 57 # required dependancies59 # check dependencies 58 60 conf.check_cfg(package = 'sndfile', atleast_version = '1.0.4', 59 61 args = '--cflags --libs') 60 conf.check_cfg(package = 'samplerate', atleast_version = '0.0.15', 61 args = '--cflags --libs') 62 if (Options.options.disable_libsamplerate == False): 63 conf.check_cfg(package = 'libsamplerate', atleast_version = '0.0.15', 64 args = '--cflags --libs') 62 65 63 66 # double precision mode
Note: See TracChangeset
for help on using the changeset viewer.