Changes in src/wscript_build [afbd7e7:d41bc4d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
rafbd7e7 rd41bc4d 1 1 # vim:set syntax=python: 2 2 3 source = ctx.path.ant_glob('*.c **/*.c') 4 uselib = [] 5 3 uselib = ['SAMPLERATE'] 6 4 if 'HAVE_FFTW3' in conf.get_env(): 7 source .filter(lambda x: not x.endswith('ooura_fft8g.c'))5 source = ctx.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c']) 8 6 uselib += ['FFTW3', 'FFTW3F'] 9 10 if 'HAVE_SAMPLERATE': 11 uselib += ['SAMPLERATE'] 12 13 if 'HAVE_SNDFILE': 14 uselib += ['SNDFILE'] 7 else: 8 source = ctx.path.ant_glob('*.c **/*.c') 15 9 16 10 # build libaubio
Note: See TracChangeset
for help on using the changeset viewer.