Changeset f6ee160
- Timestamp:
- Nov 21, 2013, 8:09:16 PM (11 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:
- 7fd1831
- Parents:
- aad688e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/wscript_build
raad688e rf6ee160 1 1 # vim:set syntax=python: 2 2 3 utils_source = ['utils.c', 'jackio.c'] 4 programs_source = ctx.path.ant_glob('*.c', excl = utils_source) 5 3 6 # build examples 4 utilsio = bld( 5 name = 'utilsio', 6 features = 'c', 7 includes = '../src', 8 source = ['utils.c', 'jackio.c'], 9 target = 'utilsio') 7 bld(features = 'c', 8 source = utils_source, 9 includes = ['../src'], 10 target = 'utilsio') 10 11 11 12 # loop over all *.c filenames in examples to build them all 12 for source_file in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c']):13 bld .program(features = 'c cprogram',13 for source_file in programs_source: 14 bld(features = 'c cprogram', 14 15 includes = '../src', 15 16 lib = 'm', 16 17 use = ['aubio', 'utilsio'], 17 source = s tr(source_file),18 source = source_file, 18 19 target = str(source_file).split('.')[0] 19 20 )
Note: See TracChangeset
for help on using the changeset viewer.