Changeset ccc55bd
- Timestamp:
- May 3, 2016, 1:30:10 AM (9 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:
- 762c7fa
- Parents:
- ae36035
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
rae36035 rccc55bd 2 2 3 3 uselib = [] 4 uselib += ['M'] 4 5 uselib += ['FFTW3', 'FFTW3F'] 5 6 uselib += ['SAMPLERATE'] … … 11 12 uselib += ['BLAS'] 12 13 13 # build each source files14 14 source = ctx.path.ant_glob('*.c **/*.c') 15 lib = 'm' if 'CL.exe' not in ctx.env.CC[0] else None 15 16 16 ctx(features = 'c', 17 17 source = source, 18 18 includes = ['.'], 19 uselib = uselib, 20 lib = lib, 19 use = uselib, 21 20 target = 'lib_objects') 22 21 … … 33 32 for target in build_features: 34 33 ctx(features = 'c ' + target, 35 use = ['lib_objects'], 36 uselib = uselib, 37 lib = lib, 34 use = uselib + ['lib_objects'], 38 35 target = 'aubio', 39 36 vnum = ctx.env['LIB_VERSION'])
Note: See TracChangeset
for help on using the changeset viewer.