Changes in tests/wscript_build [09fab95:281381f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/wscript_build ¶
r09fab95 r281381f 1 1 # vim:set syntax=python: 2 3 import os.path 2 4 3 5 uselib = ['aubio'] … … 7 9 8 10 for source_file in programs_sources: 11 target = os.path.basename(os.path.splitext(str(source_file))[0]) 9 12 bld(features = 'c cprogram test', 10 13 source = source_file, 11 target = str(source_file).split('.')[0],14 target = target, 12 15 includes = includes, 13 16 use = uselib,
Note: See TracChangeset
for help on using the changeset viewer.