- Timestamp:
- Apr 23, 2016, 12:12:06 AM (9 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:
- 6d7d52c
- Parents:
- 0806cd2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/wscript_build
r0806cd2 r58cffee 1 1 # vim:set syntax=python: 2 2 3 lib = 'm' if ctx.env['DEST_OS'] not in ['win32', 'win64'] else None 4 5 uselib = [] 6 uselib += ['FFTW3', 'FFTW3F'] 7 uselib += ['SAMPLERATE'] 8 uselib += ['SNDFILE'] 9 uselib += ['AVCODEC'] 10 uselib += ['AVFORMAT'] 11 uselib += ['AVRESAMPLE'] 12 uselib += ['AVUTIL'] 13 uselib += ['JACK'] 14 uselib += ['BLAS'] 15 16 includes = ['../src', '.'] 17 3 18 for target_name in ctx.path.ant_glob('src/**/*.c'): 4 uselib = []5 uselib += ['FFTW3', 'FFTW3F']6 uselib += ['SAMPLERATE']7 uselib += ['SNDFILE']8 uselib += ['AVCODEC']9 uselib += ['AVFORMAT']10 uselib += ['AVRESAMPLE']11 uselib += ['AVUTIL']12 uselib += ['JACK']13 uselib += ['BLAS']14 includes = ['../src', '.']15 19 extra_source = [] 16 17 20 bld(features = 'c cprogram test', 18 lib = 'm',21 lib = lib, 19 22 uselib = uselib, 20 23 source = [target_name] + extra_source,
Note: See TracChangeset
for help on using the changeset viewer.