source: src/wscript_build @ 0e355f6

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 0e355f6 was 0e355f6, checked in by Paul Brossier <piem@piem.org>, 12 years ago

src/wscript_build: add vim header

  • Property mode set to 100644
File size: 577 bytes
Line 
1# vim:set syntax=python:
2
3uselib = ['SAMPLERATE']
4if 'HAVE_FFTW3' in conf.get_env():
5  source = bld.path.ant_glob('*.c **/*.c', excl = ['**/ooura_fft8g.c'])
6  uselib += ['FFTW3', 'FFTW3F']
7else:
8  source = bld.path.ant_glob('*.c **/*.c')
9
10# build libaubio
11bld.shlib(
12    includes = ['.'],
13    source = source,
14    target = 'aubio',
15    lib = 'm',
16    uselib = uselib,
17    vnum = bld.env['LIB_VERSION'])
18
19# install headers, except _priv.h ones
20bld.install_files('${PREFIX}/include/aubio/',
21        bld.path.ant_glob('**/*.h',
22        exclude = ['_priv.h', 'config.h']),
23        relative_trick=True)
Note: See TracBrowser for help on using the repository browser.