Changes in examples/wscript_build [762c7fa:281381f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified examples/wscript_build ¶
r762c7fa r281381f 1 1 # vim:set syntax=python: 2 3 import os.path 2 4 3 5 uselib = ['aubio'] … … 17 19 # loop over all *.c filenames in examples to build them all 18 20 for source_file in programs_source: 21 target = os.path.basename(os.path.splitext(str(source_file))[0]) 19 22 bld(features = 'c cprogram', 20 23 source = source_file, 21 target = str(source_file).split('.')[0],24 target = target, 22 25 includes = includes, 23 26 use = uselib + ['utilsio'],
Note: See TracChangeset
for help on using the changeset viewer.