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