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
RevLine 
[0e355f6]1# vim:set syntax=python:
2
[729a3c0]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
[000b090]10# build libaubio
[729a3c0]11bld.shlib(
[000b090]12    includes = ['.'],
[729a3c0]13    source = source,
[000b090]14    target = 'aubio',
[729a3c0]15    lib = 'm',
16    uselib = uselib,
[000b090]17    vnum = bld.env['LIB_VERSION'])
18
19# install headers, except _priv.h ones
[46378b3]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.