source: src/wscript_build @ 36ab428

feature/crepe_org
Last change on this file since 36ab428 was 747d050, checked in by Paul Brossier <piem@piem.org>, 6 years ago

[wscript] link against hdf5 library

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[0e355f6]1# vim:set syntax=python:
2
[eae5898]3uselib = []
[ccc55bd]4uselib += ['M']
[0318cc1]5uselib += ['FFTW3', 'FFTW3F']
[379ef6c]6uselib += ['INTEL_IPP']
[0318cc1]7uselib += ['SAMPLERATE']
8uselib += ['SNDFILE']
[ba0ba10]9uselib += ['AVCODEC']
10uselib += ['AVFORMAT']
[cd133ba]11uselib += ['SWRESAMPLE']
[ba0ba10]12uselib += ['AVRESAMPLE']
13uselib += ['AVUTIL']
[f0ce36a1]14uselib += ['BLAS']
[747d050]15uselib += ['HDF5', 'HDF5_HL']
[eae5898]16
[dc0e759]17source = ctx.path.ant_glob('*.c **/*.c')
[ccc55bd]18
[985a5d1]19ctx(features = 'c',
[dc0e759]20        source = source,
21        includes = ['.'],
[ccc55bd]22        use = uselib,
[dc0e759]23        target = 'lib_objects')
[afbd7e7]24
[985a5d1]25# build libaubio.so (cshlib) and/or libaubio.a (cstlib)
[19ddbf3]26if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
[a90e9d4]27    build_features = ['cstlib', 'cshlib']
[06dba46]28elif ctx.env['DEST_OS'] in ['win32', 'win64']:
[f2f9d8b]29    build_features = ['cstlib', 'cshlib gensyms']
[fb5838a]30elif ctx.env['DEST_OS'] in ['emscripten']:
[8f343e6]31    build_features = ['cstlib','cshlib']
[0ec7113]32elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']:
33    # static in cflags, ...
34    build_features = ['cstlib']
35else:
36    # linux, darwin, android, mingw, ...
[3bf80b9]37    build_features = ['cstlib', 'cshlib']
[b712146]38
[8698499]39# also install static lib
40from waflib.Tools.c import cstlib
[18ec142]41cstlib.inst_to = '${LIBDIR}'
[f2f9d8b]42
[7fd1831]43for target in build_features:
[dc0e759]44    ctx(features = 'c ' + target,
[ccc55bd]45            use = uselib + ['lib_objects'],
[dc0e759]46            target = 'aubio',
[8774047]47            export_symbols_regex=r'(?:.*aubio|fvec|lvec|cvec|fmat|new|del)_.*',
[dc0e759]48            vnum = ctx.env['LIB_VERSION'])
[000b090]49
50# install headers, except _priv.h ones
[0ec7113]51ctx.install_files('${INCLUDEDIR}/aubio/',
[dc0e759]52        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
53        relative_trick=True)
Note: See TracBrowser for help on using the repository browser.