- Timestamp:
- Feb 10, 2013, 2:10:12 AM (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:
- 927f630
- Parents:
- b554e41
- Location:
- python
- Files:
-
- 43 moved
Legend:
- Unmodified
- Added
- Removed
-
python/generator.py
rb554e41 r25c9f9a 8 8 def get_cpp_objects(): 9 9 10 cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../ ../build/src ../../src/aubio.h').readlines()]10 cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../build/src ../src/aubio.h').readlines()] 11 11 12 12 cpp_output = filter(lambda y: len(y) > 1, cpp_output) -
python/setup.py
rb554e41 r25c9f9a 6 6 import numpy 7 7 8 library_dirs = ['../ ../build/src', '../../src/.libs']9 include_dirs = ['../ ../build/src', '../../src', '.' ]8 library_dirs = ['../build/src', '../src/.libs'] 9 include_dirs = ['../build/src', '../src', '.' ] 10 10 library_dirs = filter (lambda x: os.path.isdir(x), library_dirs) 11 11 include_dirs = filter (lambda x: os.path.isdir(x), include_dirs)
Note: See TracChangeset
for help on using the changeset viewer.