Changeset 227aa1c for python/lib
- Timestamp:
- Jan 21, 2017, 8:53:09 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:
- f131ba8
- Parents:
- f432bb1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/moresetuptools.py
rf432bb1 r227aa1c 157 157 def add_system_aubio(ext): 158 158 # use pkg-config to find aubio's location 159 add_packages(['aubio'], ext) 159 aubio_version = get_aubio_version() 160 add_packages(['aubio = ' + aubio_version], ext) 160 161 if 'aubio' not in ext.libraries: 161 print("Error: libaubio not found") 162 print("Info: aubio " + aubio_version + " was not found by pkg-config") 163 else: 164 print("Info: using system aubio " + aubio_version + " found in " + ' '.join(ext.library_dirs)) 162 165 163 166 class CleanGenerated(distutils.command.clean.clean):
Note: See TracChangeset
for help on using the changeset viewer.