Changeset 164980f
- Timestamp:
- Mar 4, 2013, 8:46:56 PM (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:
- 49505f7
- Parents:
- 7a6521d
- Location:
- python
- Files:
-
- 2 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
python/gen_pyobject.py
r7a6521d r164980f 173 173 174 174 // WARNING: if you haven't read the first line yet, please do so 175 #include " aubiowraphell.h"175 #include "ext/aubiowraphell.h" 176 176 177 177 typedef struct -
python/setup.py
r7a6521d r164980f 18 18 include_dirs = filter (lambda x: os.path.isdir(x), include_dirs) 19 19 20 aubio_extension = Extension("aubio._aubio", 21 ["aubiomodule.c", 22 "aubioproxy.c", 23 "py-cvec.c", 20 aubio_extension = Extension("aubio._aubio", [ 21 "ext/aubiomodule.c", 22 "ext/aubioproxy.c", 23 "ext/ufuncs.c", 24 "ext/py-cvec.c", 24 25 # example without macro 25 " py-filter.c",26 "ext/py-filter.c", 26 27 # macroised 27 " py-filterbank.c",28 " py-fft.c",29 " py-phasevoc.c",28 "ext/py-filterbank.c", 29 "ext/py-fft.c", 30 "ext/py-phasevoc.c", 30 31 # generated files 31 32 ] + generate_object_files(),
Note: See TracChangeset
for help on using the changeset viewer.