Changeset 729a3c0 for src/wscript_build
- Timestamp:
- Nov 17, 2011, 2:29:35 AM (13 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:
- cfaa3c4
- Parents:
- e298138
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
re298138 r729a3c0 1 uselib = ['SAMPLERATE'] 2 if 'HAVE_FFTW3' in conf.get_env(): 3 source = bld.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c']) 4 uselib += ['FFTW3', 'FFTW3F'] 5 else: 6 source = bld.path.ant_glob('*.c **/*.c') 7 1 8 # build libaubio 2 libaubio = bld.new_task_gen( 3 features = 'c cshlib', 9 bld.shlib( 4 10 includes = ['.'], 5 source = bld.path.ant_glob('*.c **/*.c'),11 source = source, 6 12 target = 'aubio', 7 uselib = ['FFTW3', 'FFTW3F', 'SAMPLERATE'], 13 lib = 'm', 14 uselib = uselib, 8 15 vnum = bld.env['LIB_VERSION']) 9 16
Note: See TracChangeset
for help on using the changeset viewer.