Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/wscript_build

    rd41bc4d rafbd7e7  
    11# vim:set syntax=python:
    22
    3 uselib = ['SAMPLERATE']
     3source = ctx.path.ant_glob('*.c **/*.c')
     4uselib = []
     5
    46if 'HAVE_FFTW3' in conf.get_env():
    5   source = ctx.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c'])
     7  source.filter(lambda x: not x.endswith('ooura_fft8g.c'))
    68  uselib += ['FFTW3', 'FFTW3F']
    7 else:
    8   source = ctx.path.ant_glob('*.c **/*.c')
     9
     10if 'HAVE_SAMPLERATE':
     11  uselib += ['SAMPLERATE']
     12
     13if 'HAVE_SNDFILE':
     14  uselib += ['SNDFILE']
    915
    1016# build libaubio
Note: See TracChangeset for help on using the changeset viewer.