Changeset c7d3c2a
- Timestamp:
- Mar 23, 2017, 4:34:13 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
- Children:
- 746d14b
- Parents:
- ecf7572
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/moresetuptools.py
recf7572 rc7d3c2a 177 177 add_local_aubio_sources(extension, usedouble=enable_double) 178 178 # generate files python/gen/*.c, python/gen/aubio-generated.h 179 extension.include_dirs += [ output_path ] 179 180 extension.sources += generate_external(header, output_path, overwrite = False, 180 181 usedouble=enable_double) -
setup.py
recf7572 rc7d3c2a 3 3 import sys, os.path, glob 4 4 from setuptools import setup, Extension 5 from python.lib.moresetuptools import *5 from python.lib.moresetuptools import build_ext, CleanGenerated 6 6 # function to generate gen/*.{c,h} 7 from python.lib.gen_external import generate_external, header, output_path8 7 from this_version import get_aubio_version, get_aubio_pyversion 9 8 … … 17 16 18 17 include_dirs += [ 'python/ext' ] 19 include_dirs += [ output_path ] # aubio-generated.h20 18 try: 21 19 import numpy
Note: See TracChangeset
for help on using the changeset viewer.