Changeset 4c4c9f6 for src/wscript_build
- Timestamp:
- Jul 27, 2012, 5:30:11 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:
- 3bba0e0
- Parents:
- 7d50c5a (diff), bf34fbb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r7d50c5a r4c4c9f6 1 1 # vim:set syntax=python: 2 2 3 uselib = ['SAMPLERATE'] 3 source = ctx.path.ant_glob('*.c **/*.c') 4 uselib = [] 5 4 6 if 'HAVE_FFTW3' in conf.get_env(): 5 source = ctx.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c'])7 source.filter(lambda x: not x.endswith('ooura_fft8g.c')) 6 8 uselib += ['FFTW3', 'FFTW3F'] 7 else: 8 source = ctx.path.ant_glob('*.c **/*.c') 9 10 if 'HAVE_SAMPLERATE': 11 uselib += ['SAMPLERATE'] 12 13 if 'HAVE_SNDFILE': 14 uselib += ['SNDFILE'] 9 15 10 16 # build libaubio
Note: See TracChangeset
for help on using the changeset viewer.