shithub: aubio

ref: 58c24e1a357d9a19af0ca2ae379b6ad85a42a83f
dir: /tests/wscript_build/

View raw version
# vim:set syntax=python:

for target_name in ctx.path.ant_glob('src/**/*.c'):
  uselib = []
  includes = ['../src', '.']
  extra_source = []
  if str(target_name).endswith('-jack.c') and ctx.env['JACK']:
    uselib += ['JACK']
    includes += ['../examples']
    extra_source += ['../examples/jackio.c']

  bld(features = 'c cprogram test',
      uselib = uselib,
      source = [target_name] + extra_source,
      target = str(target_name).split('.')[0],
      includes = includes,
      install_path = None,
      defines = 'AUBIO_UNSTABLE_API=1',
      cflags = ['-g'],
      use = 'aubio')