Changeset f264b17 for tests/wscript_build
- Timestamp:
- Jun 22, 2016, 1:00:10 PM (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:
- 4b9443c4
- Parents:
- 60fc05b (diff), 6769586 (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
-
TabularUnified tests/wscript_build ΒΆ
r60fc05b rf264b17 1 1 # vim:set syntax=python: 2 2 3 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 includes = ['../src', '.'] 14 extra_source = [] 3 uselib = ['aubio'] 15 4 5 includes = ['../src', '.'] 6 programs_sources = ctx.path.ant_glob('src/**/*.c') 7 8 for source_file in programs_sources: 16 9 bld(features = 'c cprogram test', 17 lib = 'm', 18 uselib = uselib, 19 source = [target_name] + extra_source, 20 target = str(target_name).split('.')[0], 10 source = source_file, 11 target = str(source_file).split('.')[0], 21 12 includes = includes, 13 use = uselib, 22 14 install_path = None, 23 15 defines = 'AUBIO_UNSTABLE_API=1', 24 cflags = ['-g'], 25 use = 'aubio') 16 )
Note: See TracChangeset
for help on using the changeset viewer.