Changeset bfbfafa for src/wscript_build
- Timestamp:
- Oct 3, 2017, 10:31:12 PM (7 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
- Children:
- 2e5c52e
- Parents:
- 7b7a58e (diff), 25db68c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r7b7a58e rbfbfafa 4 4 uselib += ['M'] 5 5 uselib += ['FFTW3', 'FFTW3F'] 6 uselib += ['INTEL_IPP'] 6 7 uselib += ['SAMPLERATE'] 7 8 uselib += ['SNDFILE'] … … 25 26 build_features = ['cstlib', 'cshlib'] 26 27 elif ctx.env['DEST_OS'] in ['win32', 'win64']: 27 build_features = ['cstlib', 'cshlib ']28 build_features = ['cstlib', 'cshlib gensyms'] 28 29 elif ctx.env['DEST_OS'] in ['emscripten']: 29 30 build_features = ['cstlib','cshlib'] … … 37 38 # also install static lib 38 39 from waflib.Tools.c import cstlib 39 from waflib.Tools.fc import fcstlib 40 fcstlib.inst_to = cstlib.inst_to = '${LIBDIR}' 40 cstlib.inst_to = '${LIBDIR}' 41 41 42 42 for target in build_features: … … 44 44 use = uselib + ['lib_objects'], 45 45 target = 'aubio', 46 export_symbols_regex=r'(?:.*aubio|fvec|lvec|cvec|fmat|new|del)_.*', 46 47 vnum = ctx.env['LIB_VERSION']) 47 48
Note: See TracChangeset
for help on using the changeset viewer.