[5c411dc] | 1 | #! /usr/bin/python |
---|
[110ac90] | 2 | # |
---|
[21ee709] | 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 |
---|
[ee36175] | 11 | # - doc: add doxygen |
---|
[110ac90] | 12 | # - tests: move to new unit test system |
---|
[000b090] | 13 | |
---|
| 14 | APPNAME = 'aubio' |
---|
[5820107] | 15 | |
---|
| 16 | # read from VERSION |
---|
| 17 | for l in open('VERSION').readlines(): exec (l.strip()) |
---|
| 18 | |
---|
| 19 | VERSION = '.'.join \ |
---|
| 20 | ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \ |
---|
| 21 | + AUBIO_VERSION_STATUS |
---|
| 22 | LIB_VERSION = '.'.join \ |
---|
| 23 | ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]]) |
---|
[e565c649] | 24 | |
---|
| 25 | import os.path, sys |
---|
| 26 | if os.path.exists('src/config.h') or os.path.exists('Makefile'): |
---|
| 27 | print "Please run 'make distclean' using waf" |
---|
| 28 | sys.exit(1) |
---|
| 29 | |
---|
[46378b3] | 30 | top = '.' |
---|
| 31 | out = 'build' |
---|
[000b090] | 32 | |
---|
| 33 | def init(opt): |
---|
| 34 | pass |
---|
| 35 | |
---|
[46378b3] | 36 | def options(opt): |
---|
[06d30f9] | 37 | opt.add_option('--enable-double', action='store_true', default=False, |
---|
| 38 | help='compile aubio in double precision mode') |
---|
[729a3c0] | 39 | opt.add_option('--disable-fftw', action='store_true', default=False, |
---|
| 40 | help='compile with ooura instead of fftw') |
---|
[000b090] | 41 | opt.add_option('--disable-fftw3f', action='store_true', default=False, |
---|
| 42 | help='compile with fftw3 instead of fftw3f') |
---|
[62b8ab2] | 43 | opt.add_option('--enable-complex', action='store_true', default=False, |
---|
| 44 | help='compile with C99 complex') |
---|
[46378b3] | 45 | opt.add_option('--enable-jack', action='store_true', default=False, |
---|
[2a6e672] | 46 | help='compile with jack support') |
---|
[46378b3] | 47 | opt.add_option('--enable-lash', action='store_true', default=False, |
---|
[2a6e672] | 48 | help='compile with lash support') |
---|
[110ac90] | 49 | opt.add_option('--enable-sndfile', action='store_true', default=False, |
---|
| 50 | help='compile with libsndfile support') |
---|
[ad7c710] | 51 | opt.add_option('--enable-samplerate', action='store_true', default=False, |
---|
[2a6e672] | 52 | help='compile with libsamplerate support') |
---|
[5c411dc] | 53 | opt.add_option('--with-target-platform', type='string', |
---|
| 54 | help='set target platform for cross-compilation', dest='target_platform') |
---|
[46378b3] | 55 | opt.load('compiler_cc') |
---|
| 56 | opt.load('compiler_cxx') |
---|
| 57 | opt.load('gnu_dirs') |
---|
| 58 | opt.load('waf_unit_test') |
---|
[000b090] | 59 | |
---|
| 60 | def 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 |
---|
[110ac90] | 65 | #conf.check_tool('misc') # needed for subst |
---|
[46378b3] | 66 | conf.load('waf_unit_test') |
---|
[000b090] | 67 | |
---|
[5c411dc] | 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 | |
---|
[000b090] | 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') |
---|
[10a5413] | 79 | conf.check(header_name='limits.h') |
---|
[000b090] | 80 | |
---|
| 81 | # optionally use complex.h |
---|
[62b8ab2] | 82 | if (Options.options.enable_complex == True): |
---|
[000b090] | 83 | conf.check(header_name='complex.h') |
---|
| 84 | |
---|
[2e4fb04] | 85 | # check dependencies |
---|
[110ac90] | 86 | if (Options.options.enable_sndfile == True): |
---|
| 87 | conf.check_cfg(package = 'sndfile', atleast_version = '1.0.4', |
---|
| 88 | args = '--cflags --libs') |
---|
[82335b7] | 89 | if (Options.options.enable_samplerate == True): |
---|
[46378b3] | 90 | conf.check_cfg(package = 'samplerate', atleast_version = '0.0.15', |
---|
[2e4fb04] | 91 | args = '--cflags --libs') |
---|
[000b090] | 92 | |
---|
[06d30f9] | 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 | |
---|
[110ac90] | 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 | print conf.env |
---|
| 106 | print Options.options.directories |
---|
| 107 | |
---|
| 108 | if (Options.options.disable_fftw == False) or not conf.env['PKGCONFIG']: |
---|
[729a3c0] | 109 | # one of fftwf or fftw3f |
---|
| 110 | if (Options.options.disable_fftw3f == True): |
---|
[06d30f9] | 111 | conf.check_cfg(package = 'fftw3', atleast_version = '3.0.0', |
---|
| 112 | args = '--cflags --libs') |
---|
| 113 | else: |
---|
[729a3c0] | 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 |
---|
[000b090] | 125 | |
---|
| 126 | # optional dependancies |
---|
[46378b3] | 127 | if (Options.options.enable_jack == True): |
---|
[000b090] | 128 | conf.check_cfg(package = 'jack', atleast_version = '0.15.0', |
---|
| 129 | args = '--cflags --libs') |
---|
[46378b3] | 130 | if (Options.options.enable_lash == True): |
---|
[000b090] | 131 | conf.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0', |
---|
| 132 | args = '--cflags --libs', uselib_store = 'LASH') |
---|
| 133 | |
---|
| 134 | # swig |
---|
[110ac90] | 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']: |
---|
[000b090] | 140 | conf.check_tool('swig', tooldir='swig') |
---|
| 141 | conf.check_swig_version('1.3.27') |
---|
| 142 | |
---|
| 143 | # python |
---|
[110ac90] | 144 | if conf.find_program('python'): |
---|
[000b090] | 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 | ''' |
---|
[110ac90] | 154 | if conf.check_cc(fragment = check_c99_varargs, |
---|
[46378b3] | 155 | type='cstlib', |
---|
[000b090] | 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 | |
---|
[110ac90] | 162 | # add some defines used in examples |
---|
[000b090] | 163 | conf.define('AUBIO_PREFIX', conf.env['PREFIX']) |
---|
| 164 | conf.define('PACKAGE', APPNAME) |
---|
| 165 | |
---|
| 166 | # check if docbook-to-man is installed, optional |
---|
[110ac90] | 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)') |
---|
[000b090] | 171 | |
---|
| 172 | def build(bld): |
---|
[110ac90] | 173 | bld.env['VERSION'] = VERSION |
---|
| 174 | bld.env['LIB_VERSION'] = LIB_VERSION |
---|
[000b090] | 175 | |
---|
| 176 | # add sub directories |
---|
[e460e60] | 177 | bld.add_subdirs('src examples') |
---|
[000b090] | 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 |
---|
[110ac90] | 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' |
---|
[000b090] | 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 | ) |
---|
[110ac90] | 199 | manpages = bld.new_task_gen(name = 'docbooktoman', |
---|
[000b090] | 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 |
---|
[110ac90] | 204 | bld.install_files('${PREFIX}/share/sounds/aubio/', |
---|
[000b090] | 205 | 'sounds/woodblock.aiff') |
---|
| 206 | |
---|
[f11d78d] | 207 | # build and run the unit tests |
---|
| 208 | build_tests(bld) |
---|
| 209 | |
---|
[000b090] | 210 | def shutdown(bld): |
---|
| 211 | pass |
---|
| 212 | |
---|
[f11d78d] | 213 | # loop over all *.c filenames in tests/src to build them all |
---|
| 214 | # target name is filename.c without the .c |
---|
| 215 | def build_tests(bld): |
---|
[46378b3] | 216 | for target_name in bld.path.ant_glob('tests/src/**/*.c'): |
---|
[110ac90] | 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 | |
---|
[f11d78d] | 232 | this_target = bld.new_task_gen( |
---|
[46378b3] | 233 | features = 'c cprogram test', |
---|
[110ac90] | 234 | uselib = uselib, |
---|
| 235 | source = [target_name] + extra_source, |
---|
[46378b3] | 236 | target = str(target_name).split('.')[0], |
---|
[110ac90] | 237 | includes = ['src'] + includes, |
---|
[740f06b] | 238 | defines = 'AUBIO_UNSTABLE_API=1', |
---|
[46378b3] | 239 | use = 'aubio') |
---|