source: src/wscript_build @ c698d1b

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

use waf as new build system

  • Property mode set to 100644
File size: 427 bytes
Line 
1# build libaubio
2libaubio = bld.new_task_gen(
3    features = 'cc 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
11for file in bld.path.ant_glob('**/*.h').split():
12  if '_priv.h' in file: continue
13  bld.install_as('${PREFIX}/include/aubio/' + file, file)
Note: See TracBrowser for help on using the repository browser.