source: src/wscript_build @ ed090ff7

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

src/wscript_build: move jack to examples

Signed-off-by: Paul Brossier <piem@piem.org>

  • Property mode set to 100644
File size: 1.0 KB
Line 
1# vim:set syntax=python:
2
3source = ctx.path.ant_glob('*.c **/*.c')
4uselib = []
5uselib += ['FFTW3', 'FFTW3F']
6uselib += ['SAMPLERATE']
7uselib += ['SNDFILE']
8uselib += ['AVCODEC']
9uselib += ['AVFORMAT']
10uselib += ['AVRESAMPLE']
11uselib += ['AVUTIL']
12
13ctx(features = 'c',
14      source = source,
15      includes = ['.'],
16      uselib = uselib,
17      lib = 'm',
18      target = 'lib_objects')
19
20# build libaubio.so (cshlib) and/or libaubio.a (cstlib)
21if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
22    build_features = ['cstlib']
23elif ctx.env['DEST_OS'] in ['win32', 'win64']:
24    build_features = ['cshlib']
25else: #linux, darwin, android, mingw, ...
26    build_features = ['cshlib', 'cstlib']
27
28for target in build_features:
29  ctx(features = 'c ' + target,
30      use = ['lib_objects'], #source = source,
31      target = 'aubio',
32      install_path = '${PREFIX}/lib',
33      vnum = ctx.env['LIB_VERSION'])
34
35# install headers, except _priv.h ones
36ctx.install_files('${PREFIX}/include/aubio/',
37    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
38    relative_trick=True)
Note: See TracBrowser for help on using the repository browser.