shithub: aubio

ref: c19f9e573b86231d4f8bdaa7cd6b6d2b0cf7c8aa
dir: /src/wscript_build/

View raw version
# vim:set syntax=python:

source = ctx.path.ant_glob('*.c **/*.c')
uselib = []

if 'HAVE_FFTW3' in conf.get_env():
  source.filter(lambda x: not x.endswith('ooura_fft8g.c'))
  uselib += ['FFTW3', 'FFTW3F']

if 'HAVE_SAMPLERATE':
  uselib += ['SAMPLERATE']

if 'HAVE_SNDFILE':
  uselib += ['SNDFILE']

# build libaubio
from waflib import Options
if Options.platform == 'ios':
    build_lib_func = ctx.stlib
else:
    build_lib_func = ctx.shlib

build_lib_func(
    includes = ['.'],
    source = source,
    target = 'aubio',
    lib = 'm',
    uselib = uselib,
    install_path = '${PREFIX}/lib',
    vnum = ctx.env['LIB_VERSION'])

# install headers, except _priv.h ones
ctx.install_files('${PREFIX}/include/aubio/',
    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
    relative_trick=True)