Changeset 45521d2
- Timestamp:
- Oct 3, 2016, 4:33:02 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:
- 8d09036
- Parents:
- 8be88e7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/moresetuptools.py
r8be88e7 r45521d2 53 53 ext.libraries += ['aubio'] 54 54 55 def add_local_aubio_sources(ext ):55 def add_local_aubio_sources(ext, usedouble = False): 56 56 """ build aubio inside python module instead of linking against libaubio """ 57 57 print("Warning: libaubio was not built with waf, adding src/") … … 74 74 packages = ['libavcodec', 'libavformat', 'libavutil', 'libavresample', 75 75 'jack', 76 'sndfile', 'samplerate', 76 'jack', 77 'sndfile', 77 78 #'fftw3f', 78 79 ] 80 # samplerate only works with float 81 if usedouble == False: 82 packages += ['samplerate'] 83 else: 84 print("Info: not adding libsamplerate in double precision mode") 79 85 add_packages(packages, ext=ext) 80 86 if 'avcodec' in ext.libraries \
Note: See TracChangeset
for help on using the changeset viewer.