source: src/wscript_build @ c7860af

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

src/aubio.h: do not include config.h, do not install it

  • Property mode set to 100644
File size: 449 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 or file == 'config.h': continue
13  bld.install_as('${PREFIX}/include/aubio/' + file, file)
Note: See TracBrowser for help on using the repository browser.