source: src/wscript_build @ 46378b3

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

wscript: update to waf 1.6.7

  • Property mode set to 100644
File size: 420 bytes
Line 
1# build libaubio
2libaubio = bld.new_task_gen(
3    features = 'c cshlib',
4    includes = ['.'],
5    source = bld.path.ant_glob('*.c **/*.c'),
6    target = 'aubio',
7    uselib = ['FFTW3', 'FFTW3F', 'SAMPLERATE'],
8    vnum = bld.env['LIB_VERSION'])
9
10# install headers, except _priv.h ones
11bld.install_files('${PREFIX}/include/aubio/',
12        bld.path.ant_glob('**/*.h',
13        exclude = ['_priv.h', 'config.h']),
14        relative_trick=True)
Note: See TracBrowser for help on using the repository browser.