Changeset eae5898 for examples/wscript_build
- Timestamp:
- Jul 13, 2012, 9:00:12 PM (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:
- 4d75b46
- Parents:
- 9316173
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/wscript_build
r9316173 reae5898 2 2 3 3 # build examples 4 sndfileio = ctx.new_task_gen(features = 'c',5 includes = '../src',6 source = ['sndfileio.c'],7 target = 'sndfileio')8 9 4 utilsio = ctx.new_task_gen(name = 'utilsio', features = 'c', 10 5 includes = '../src', 11 add_objects = 'sndfileio',12 6 source = ['utils.c', 'jackio.c'], 13 uselib = ['LASH', 'JACK' , 'SNDFILE'],7 uselib = ['LASH', 'JACK'], 14 8 target = 'utilsio') 15 9 16 10 # loop over all *.c filenames in examples to build them all 17 for target_name in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c' , 'sndfileio.c']):11 for target_name in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c']): 18 12 ctx.new_task_gen(features = 'c cprogram', 19 13 add_objects = 'utilsio',
Note: See TracChangeset
for help on using the changeset viewer.