Changeset d41bc4d for examples/wscript_build
- Timestamp:
- Jul 10, 2012, 1:06:11 AM (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:
- dbf47c6
- Parents:
- f4493f4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/wscript_build
rf4493f4 rd41bc4d 2 2 3 3 # build examples 4 sndfileio = bld.new_task_gen(features = 'c',4 sndfileio = ctx.new_task_gen(features = 'c', 5 5 includes = '../src', 6 6 source = ['sndfileio.c'], 7 7 target = 'sndfileio') 8 8 9 utilsio = bld.new_task_gen(name = 'utilsio', features = 'c',9 utilsio = ctx.new_task_gen(name = 'utilsio', features = 'c', 10 10 includes = '../src', 11 11 add_objects = 'sndfileio', … … 15 15 16 16 # loop over all *.c filenames in examples to build them all 17 for target_name in bld.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c', 'sndfileio.c']):18 bld.new_task_gen(features = 'c cprogram',17 for target_name in ctx.path.ant_glob('*.c', excl = ['utils.c', 'jackio.c', 'sndfileio.c']): 18 ctx.new_task_gen(features = 'c cprogram', 19 19 add_objects = 'utilsio', 20 20 includes = '../src',
Note: See TracChangeset
for help on using the changeset viewer.