source: wscript @ 36f954a

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

wscript: factorise pkg-config detection

  • Property mode set to 100644
File size: 7.6 KB
Line 
1#! /usr/bin/python
2#
3# waf build script, see http://code.google.com/p/waf/
4# usage:
5#     $ waf distclean configure build
6# get it:
7#     $ svn co http://waf.googlecode.com/svn/trunk /path/to/waf
8#     $ alias waf=/path/to/waf/waf-light
9#
10# TODO
11#  - doc: add doxygen
12#  - tests: move to new unit test system
13
14APPNAME = 'aubio'
15
16# read from VERSION
17for l in open('VERSION').readlines(): exec (l.strip())
18
19VERSION = '.'.join \
20        ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \
21        + AUBIO_VERSION_STATUS
22LIB_VERSION = '.'.join \
23        ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]])
24
25import os.path, sys
26if os.path.exists('src/config.h') or os.path.exists('Makefile'):
27    print "Please run 'make distclean' using waf"
28    sys.exit(1)
29
30top = '.'
31out = 'build'
32
33def init(opt):
34  pass
35
36def options(opt):
37  opt.add_option('--enable-double', action='store_true', default=False,
38      help='compile aubio in double precision mode')
39  opt.add_option('--disable-fftw', action='store_true', default=False,
40      help='compile with ooura instead of fftw')
41  opt.add_option('--disable-fftw3f', action='store_true', default=False,
42      help='compile with fftw3 instead of fftw3f')
43  opt.add_option('--enable-complex', action='store_true', default=False,
44      help='compile with C99 complex')
45  opt.add_option('--enable-jack', action='store_true', default=False,
46      help='compile with jack support')
47  opt.add_option('--enable-lash', action='store_true', default=False,
48      help='compile with lash support')
49  opt.add_option('--enable-sndfile', action='store_true', default=False,
50      help='compile with libsndfile support')
51  opt.add_option('--enable-samplerate', action='store_true', default=False,
52      help='compile with libsamplerate support')
53  opt.add_option('--with-target-platform', type='string',
54      help='set target platform for cross-compilation', dest='target_platform')
55  opt.load('compiler_cc')
56  opt.load('compiler_cxx')
57  opt.load('gnu_dirs')
58  opt.load('waf_unit_test')
59
60def configure(conf):
61  import Options
62  conf.check_tool('compiler_cc')
63  conf.check_tool('compiler_cxx')
64  conf.check_tool('gnu_dirs') # helpful for autotools transition and .pc generation
65  #conf.check_tool('misc') # needed for subst
66  conf.load('waf_unit_test')
67
68  if Options.options.target_platform:
69    Options.platform = Options.options.target_platform
70
71  if Options.platform == 'win32':
72    conf.env['shlib_PATTERN'] = 'lib%s.dll'
73
74  # check for required headers
75  conf.check(header_name='stdlib.h')
76  conf.check(header_name='stdio.h')
77  conf.check(header_name='math.h')
78  conf.check(header_name='string.h')
79  conf.check(header_name='limits.h')
80
81  # optionally use complex.h
82  if (Options.options.enable_complex == True):
83    conf.check(header_name='complex.h')
84
85  # check dependencies
86  if (Options.options.enable_sndfile == True):
87    conf.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
88      args = '--cflags --libs')
89  if (Options.options.enable_samplerate == True):
90      conf.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
91        args = '--cflags --libs')
92
93  # double precision mode
94  if (Options.options.enable_double == True):
95    conf.define('HAVE_AUBIO_DOUBLE', 1)
96  else:
97    conf.define('HAVE_AUBIO_DOUBLE', 0)
98
99  # check if pkg-config is installed, optional
100  try:
101    conf.find_program('pkg-config', var='PKGCONFIG')
102  except conf.errors.ConfigurationError:
103    conf.to_log('pkg-config was not found, not looking for (ignoring)')
104
105  # optional dependancies using pkg-config
106  if conf.env['PKGCONFIG']:
107
108    if (Options.options.disable_fftw == False):
109      # one of fftwf or fftw3f
110      if (Options.options.disable_fftw3f == True):
111        conf.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
112            args = '--cflags --libs')
113      else:
114        # fftw3f not disabled, take most sensible one according to enable_double
115        if (Options.options.enable_double == True):
116          conf.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
117              args = '--cflags --libs')
118        else:
119          conf.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
120              args = '--cflags --libs')
121      conf.define('HAVE_FFTW3', 1)
122    else:
123      # fftw disabled, use ooura
124      pass
125
126    if (Options.options.enable_jack == True):
127      conf.check_cfg(package = 'jack', atleast_version = '0.15.0',
128      args = '--cflags --libs')
129
130    if (Options.options.enable_lash == True):
131      conf.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0',
132      args = '--cflags --libs', uselib_store = 'LASH')
133
134  # swig
135  try:
136    conf.find_program('swig', var='SWIG')
137  except conf.errors.ConfigurationError:
138    conf.to_log('swig was not found, not looking for (ignoring)')
139  if conf.env['SWIG']:
140    conf.check_tool('swig', tooldir='swig')
141    conf.check_swig_version('1.3.27')
142
143    # python
144    if conf.find_program('python'):
145      conf.check_tool('python')
146      conf.check_python_version((2,4,2))
147      conf.check_python_headers()
148
149  # check support for C99 __VA_ARGS__ macros
150  check_c99_varargs = '''
151#include <stdio.h>
152#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
153'''
154  if conf.check_cc(fragment = check_c99_varargs,
155      type='cstlib',
156      msg = 'Checking for C99 __VA_ARGS__ macro'):
157    conf.define('HAVE_C99_VARARGS_MACROS', 1)
158
159  # write configuration header
160  conf.write_config_header('src/config.h')
161
162  # add some defines used in examples
163  conf.define('AUBIO_PREFIX', conf.env['PREFIX'])
164  conf.define('PACKAGE', APPNAME)
165
166  # check if docbook-to-man is installed, optional
167  try:
168    conf.find_program('docbook-to-man', var='DOCBOOKTOMAN')
169  except conf.errors.ConfigurationError:
170    conf.to_log('docbook-to-man was not found (ignoring)')
171
172def build(bld):
173  bld.env['VERSION'] = VERSION
174  bld.env['LIB_VERSION'] = LIB_VERSION
175
176  # add sub directories
177  bld.add_subdirs('src examples')
178  if bld.env['SWIG']:
179    if bld.env['PYTHON']:
180      bld.add_subdirs('python/aubio python')
181
182  # create the aubio.pc file for pkg-config
183  if bld.env['TARGET_PLATFORM'] == 'linux':
184    aubiopc = bld.new_task_gen('subst')
185    aubiopc.source = 'aubio.pc.in'
186    aubiopc.target = 'aubio.pc'
187    aubiopc.install_path = '${PREFIX}/lib/pkgconfig'
188
189  # build manpages from sgml files
190  if bld.env['DOCBOOKTOMAN']:
191    import TaskGen
192    TaskGen.declare_chain(
193        name    = 'docbooktoman',
194        rule    = '${DOCBOOKTOMAN} ${SRC} > ${TGT}',
195        ext_in  = '.sgml',
196        ext_out = '.1',
197        reentrant = 0,
198    )
199    manpages = bld.new_task_gen(name = 'docbooktoman',
200        source=bld.path.ant_glob('doc/*.sgml'))
201    bld.install_files('${MANDIR}/man1', bld.path.ant_glob('doc/*.1'))
202
203  # install woodblock sound
204  bld.install_files('${PREFIX}/share/sounds/aubio/',
205      'sounds/woodblock.aiff')
206
207  # build and run the unit tests
208  build_tests(bld)
209
210def shutdown(bld):
211  pass
212
213# loop over all *.c filenames in tests/src to build them all
214# target name is filename.c without the .c
215def build_tests(bld):
216  for target_name in bld.path.ant_glob('tests/src/**/*.c'):
217    includes = ['src']
218    uselib = []
219    if not str(target_name).endswith('-jack.c'):
220      includes = []
221      uselib = []
222      extra_source = []
223    else:
224      # phasevoc-jack needs jack
225      if bld.env['JACK']:
226        includes = ['examples']
227        uselib = ['JACK']
228        extra_source = ['examples/jackio.c']
229      else:
230        continue
231
232    this_target = bld.new_task_gen(
233        features = 'c cprogram test',
234        uselib = uselib,
235        source = [target_name] + extra_source,
236        target = str(target_name).split('.')[0],
237        includes = ['src'] + includes,
238        defines = 'AUBIO_UNSTABLE_API=1',
239        use = 'aubio')
Note: See TracBrowser for help on using the repository browser.