Changeset 281381f for tests/wscript_build
- Timestamp:
- Jul 21, 2016, 2:52:09 AM (8 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:
- 7f35041
- Parents:
- ea7428a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/wscript_build
rea7428a 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.