Merge branch 'device' into develop
[aubio.git] / wscript
diff --git a/wscript b/wscript
index 9c680be..d6eda0b 100644 (file)
--- a/wscript
+++ b/wscript
 #! /usr/bin/python
-# 
+#
+# waf build script, see http://code.google.com/p/waf/
+# usage:
+#     $ waf distclean configure build
+# get it:
+#     $ svn co http://waf.googlecode.com/svn/trunk /path/to/waf
+#     $ alias waf=/path/to/waf/waf-light
+#
 # TODO
-#  - plugins/puredata: add pd compilation
-#  - java: add swig compilation
-#  - doc: add docbook2html and doxygen
-#  - tests: move to new unit test system 
+#  - doc: add doxygen
+#  - tests: move to new unit test system
 
 APPNAME = 'aubio'
-VERSION = '0.3.3'
-LIB_VERSION = '2.1.1'
-srcdir = '.'
-blddir = 'build'
-
-def init(opt):
-  pass
-
-def set_options(opt):
-  opt.add_option('--enable-double', action='store_true', default=False,
-      help='compile aubio in double precision mode')
-  opt.add_option('--disable-fftw3f', action='store_true', default=False,
-      help='compile with fftw3 instead of fftw3f')
-  opt.add_option('--disable-complex', action='store_true', default=False,
-      help='compile without C99 complex')
-  opt.add_option('--disable-jack', action='store_true', default=False,
-      help='compile without jack support')
-  opt.add_option('--disable-lash', action='store_true', default=False,
-      help='compile without lash support')
-  opt.add_option('--enable-java', action='store_true', default=False,
-      help='compile with java support')
-  opt.add_option('--with-target-platform', type='string',
+
+# read from VERSION
+for l in open('VERSION').readlines(): exec (l.strip())
+
+VERSION = '.'.join \
+       ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \
+       + AUBIO_VERSION_STATUS
+LIB_VERSION = '.'.join \
+       ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]])
+
+import os.path, sys
+if os.path.exists('src/config.h') or os.path.exists('Makefile'):
+    print "Please run 'make distclean' to clean-up autotools files before using waf"
+    sys.exit(1)
+
+top = '.'
+out = 'build'
+
+def add_option_enable_disable(ctx, name, default = None, help_str = None, help_disable_str = None):
+  if help_str == None:
+      help_str = 'enable ' + name + ' support'
+  if help_disable_str == None:
+      help_disable_str = 'do not ' + help_str
+  ctx.add_option('--enable-' + name, action = 'store_true', default = default,
+          dest = 'enable_' + name,
+          help = help_str)
+  ctx.add_option('--disable-' + name, action = 'store_false',
+          #default = default,
+          dest = 'enable_' + name,
+          help = help_disable_str )
+
+def options(ctx):
+  add_option_enable_disable(ctx, 'double', default = False,
+          help_str = 'compile aubio in double precision mode')
+  add_option_enable_disable(ctx, 'fftw3f', default = False,
+          help_str = 'compile with fftw3f instead of ooura (recommended)', help_disable_str = 'do not compile with fftw3f')
+  add_option_enable_disable(ctx, 'fftw3', default = False,
+          help_str = 'compile with fftw3 instead of ooura', help_disable_str = 'do not compile with fftw3')
+  add_option_enable_disable(ctx, 'complex', default = False,
+          help_str ='compile with C99 complex', help_disable_str = 'do not use C99 complex (default)' )
+  add_option_enable_disable(ctx, 'jack', default = None,
+          help_str = 'compile with jack (auto)', help_disable_str = 'disable jack support')
+  add_option_enable_disable(ctx, 'lash', default = None,
+          help_str = 'compile with LASH (auto)', help_disable_str = 'disable LASH' )
+  add_option_enable_disable(ctx, 'sndfile', default = None,
+          help_str = 'compile with sndfile (auto)', help_disable_str = 'disable sndfile')
+  add_option_enable_disable(ctx, 'samplerate', default = None,
+          help_str = 'compile with samplerate (auto)', help_disable_str = 'disable samplerate')
+
+  ctx.add_option('--with-target-platform', type='string',
       help='set target platform for cross-compilation', dest='target_platform')
-  opt.tool_options('compiler_cc')
-  opt.tool_options('compiler_cxx')
-  opt.tool_options('gnu_dirs')
-  opt.tool_options('UnitTest')
-
-def configure(conf):
-  import Options
-  conf.check_tool('compiler_cc')
-  conf.check_tool('compiler_cxx')
-  conf.check_tool('gnu_dirs') # helpful for autotools transition and .pc generation
-  conf.check_tool('misc') # needed for subst
+  ctx.load('compiler_c')
+  ctx.load('waf_unit_test')
+
+def configure(ctx):
+  from waflib import Options
+  ctx.load('compiler_c')
+  ctx.load('waf_unit_test')
+  ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra']
 
   if Options.options.target_platform:
     Options.platform = Options.options.target_platform
 
   if Options.platform == 'win32':
-    conf.env['shlib_PATTERN'] = 'lib%s.dll'
+    ctx.env['shlib_PATTERN'] = 'lib%s.dll'
+
+  if Options.platform == 'darwin':
+    ctx.env.CFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
+    ctx.env.LINKFLAGS += ['-arch', 'i386', '-arch', 'x86_64']
+    ctx.env.CC = 'llvm-gcc-4.2'
+    ctx.env.LINK_CC = 'llvm-gcc-4.2'
+    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
+    ctx.define('HAVE_ACCELERATE', 1)
+
+  if Options.platform in [ 'ios', 'iosimulator' ]:
+    ctx.env.CC = 'clang'
+    ctx.env.LD = 'clang'
+    ctx.env.LINK_CC = 'clang'
+    ctx.define('HAVE_ACCELERATE', 1)
+    ctx.define('TARGET_OS_IPHONE', 1)
+    ctx.env.FRAMEWORK = ['CoreFoundation', 'AudioToolbox', 'Accelerate']
+    SDKVER="7.0"
+    MINSDKVER="6.1"
+    if Options.platform == 'ios':
+        DEVROOT="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer"
+        SDKROOT="%(DEVROOT)s/SDKs/iPhoneOS%(SDKVER)s.sdk" % locals()
+        ctx.env.CFLAGS += [ '-arch', 'armv7' ]
+        ctx.env.CFLAGS += [ '-arch', 'armv7s' ]
+        ctx.env.LINKFLAGS += ['-arch', 'armv7']
+        ctx.env.LINKFLAGS += ['-arch', 'armv7s']
+    else:
+        DEVROOT="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer"
+        SDKROOT="%(DEVROOT)s/SDKs/iPhoneSimulator%(SDKVER)s.sdk" % locals()
+        ctx.env.CFLAGS += [ '-arch', 'i386' ]
+        ctx.env.LINKFLAGS += ['-arch', 'i386']
+        ctx.env.CFLAGS += [ '-arch', 'x86_64' ]
+        ctx.env.LINKFLAGS += ['-arch', 'x86_64']
+    ctx.env.CFLAGS += [ '-miphoneos-version-min=' + MINSDKVER ]
+    ctx.env.CFLAGS += [ '--sysroot=%s' % SDKROOT]
+    ctx.env.CFLAGS += ['-std=c99']
+    ctx.env.LINKFLAGS += ['-std=c99']
+    ctx.env.LINKFLAGS += ['--sysroot=%s' % SDKROOT]
 
   # check for required headers
-  conf.check(header_name='stdlib.h')
-  conf.check(header_name='stdio.h')
-  conf.check(header_name='math.h')
-  conf.check(header_name='string.h')
+  ctx.check(header_name='stdlib.h')
+  ctx.check(header_name='stdio.h')
+  ctx.check(header_name='math.h')
+  ctx.check(header_name='string.h')
+  ctx.check(header_name='limits.h')
+
+  # check support for C99 __VA_ARGS__ macros
+  check_c99_varargs = '''
+#include <stdio.h>
+#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
+'''
+  if ctx.check_cc(fragment = check_c99_varargs,
+      type='cstlib',
+      msg = 'Checking for C99 __VA_ARGS__ macro'):
+    ctx.define('HAVE_C99_VARARGS_MACROS', 1)
 
   # optionally use complex.h
-  if (Options.options.disable_complex == False):
-    conf.check(header_name='complex.h')
+  if (Options.options.enable_complex == True):
+    ctx.check(header_name='complex.h')
 
-  # required dependancies
-  conf.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
-    args = '--cflags --libs')
-  conf.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
-    args = '--cflags --libs')
+  # check dependencies
+  if (Options.options.enable_sndfile != False):
+      ctx.check_cfg(package = 'sndfile', atleast_version = '1.0.4',
+        args = '--cflags --libs', mandatory = False)
+  if (Options.options.enable_samplerate != False):
+      ctx.check_cfg(package = 'samplerate', atleast_version = '0.0.15',
+        args = '--cflags --libs', mandatory = False)
 
   # double precision mode
   if (Options.options.enable_double == True):
-    conf.define('HAVE_AUBIO_DOUBLE', 1)
+    ctx.define('HAVE_AUBIO_DOUBLE', 1)
   else:
-    conf.define('HAVE_AUBIO_DOUBLE', 0)
-
-  # one of fftwf or fftw3f
-  if (Options.options.disable_fftw3f == True):
-    conf.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
-        args = '--cflags --libs')
-  else:
-    # fftw3f not disabled, take most sensible one according to enable_double
-    if (Options.options.enable_double == True):
-      conf.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
-          args = '--cflags --libs')
+    ctx.define('HAVE_AUBIO_DOUBLE', 0)
+
+  # optional dependancies using pkg-config
+  if (Options.options.enable_fftw3 != False or Options.options.enable_fftw3f != False):
+    # one of fftwf or fftw3f
+    if (Options.options.enable_fftw3f != False):
+      ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
+          args = '--cflags --libs', mandatory = False)
+      if (Options.options.enable_double == True):
+        ctx.msg('Warning', 'fftw3f enabled, but aubio compiled in double precision!')
     else:
-      conf.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
-          args = '--cflags --libs')
-
-  # optional dependancies
-  if (Options.options.disable_jack == False):
-    conf.check_cfg(package = 'jack', atleast_version = '0.15.0',
-    args = '--cflags --libs')
-  if (Options.options.disable_lash == False):
-    conf.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0',
-    args = '--cflags --libs', uselib_store = 'LASH')
-
-  # swig
-  if conf.find_program('swig', var='SWIG', mandatory = False):
-    conf.check_tool('swig', tooldir='swig')
-    conf.check_swig_version('1.3.27')
-
-    # python
-    if conf.find_program('python', mandatory = False):
-      conf.check_tool('python')
-      conf.check_python_version((2,4,2))
-      conf.check_python_headers()
-
-    # java
-    if (Options.options.enable_java == True):
-      conf.fatal('Java build not yet implemented')
-      conf.check_tool('java')
+      # fftw3f not enabled, take most sensible one according to enable_double
+      if (Options.options.enable_double == True):
+        ctx.check_cfg(package = 'fftw3', atleast_version = '3.0.0',
+            args = '--cflags --libs', mandatory = False)
+      else:
+        ctx.check_cfg(package = 'fftw3f', atleast_version = '3.0.0',
+            args = '--cflags --libs', mandatory = False)
+    ctx.define('HAVE_FFTW3', 1)
+
+  # fftw disabled, use ooura
+  if 'HAVE_FFTW3F' in ctx.env.define_key:
+    ctx.msg('Checking for FFT implementation', 'fftw3f')
+  elif 'HAVE_FFTW3' in ctx.env.define_key:
+    ctx.msg('Checking for FFT implementation', 'fftw3')
+  elif 'HAVE_ACCELERATE' in ctx.env.define_key:
+    ctx.msg('Checking for FFT implementation', 'vDSP')
+  else:
+    ctx.msg('Checking for FFT implementation', 'ooura')
 
-  # check support for C99 __VA_ARGS__ macros
-  check_c99_varargs = '''
-#include <stdio.h>
-#define AUBIO_ERR(...) fprintf(stderr, __VA_ARGS__)
-'''
-  if conf.check_cc(fragment = check_c99_varargs, 
-      type='cstaticlib', 
-      msg = 'Checking for C99 __VA_ARGS__ macro'):
-    conf.define('HAVE_C99_VARARGS_MACROS', 1)
+  if (Options.options.enable_jack != False):
+    ctx.check_cfg(package = 'jack', atleast_version = '0.15.0',
+    args = '--cflags --libs', mandatory = False)
 
-  # write configuration header
-  conf.write_config_header('src/config.h')
+  if (Options.options.enable_lash != False):
+    ctx.check_cfg(package = 'lash-1.0', atleast_version = '0.5.0',
+    args = '--cflags --libs', uselib_store = 'LASH', mandatory = False)
 
-  # check for puredata header
-  conf.check(header_name='m_pd.h')
+  # write configuration header
+  ctx.write_config_header('src/config.h')
 
-  # add some defines used in examples 
-  conf.define('AUBIO_PREFIX', conf.env['PREFIX'])
-  conf.define('PACKAGE', APPNAME)
+  # add some defines used in examples
+  ctx.define('AUBIO_PREFIX', ctx.env['PREFIX'])
+  ctx.define('PACKAGE', APPNAME)
 
   # check if docbook-to-man is installed, optional
-  conf.find_program('docbook-to-man', var='DOCBOOKTOMAN', mandatory=False)
+  try:
+    ctx.find_program('docbook-to-man', var='DOCBOOKTOMAN')
+  except ctx.errors.ConfigurationError:
+    ctx.to_log('docbook-to-man was not found (ignoring)')
 
 def build(bld):
-  bld.env['VERSION'] = VERSION 
-  bld.env['LIB_VERSION'] = LIB_VERSION 
+  bld.env['VERSION'] = VERSION
+  bld.env['LIB_VERSION'] = LIB_VERSION
 
   # add sub directories
-  bld.add_subdirs('src ext examples cpp')
-  if bld.env['SWIG']:
-    if bld.env['PYTHON']:
-      bld.add_subdirs('python/aubio python')
-    if bld.env['JAVA']:
-      pass
-
-  # create the aubio.pc file for pkg-config
-  aubiopc = bld.new_task_gen('subst')
-  aubiopc.source = 'aubio.pc.in'
-  aubiopc.target = 'aubio.pc'
-  aubiopc.install_path = '${PREFIX}/lib/pkgconfig'
+  bld.recurse('src')
+  from waflib import Options
+  if Options.platform not in ['ios', 'iosimulator']:
+      bld.recurse('examples')
+      bld.recurse('tests')
+
+  """
+  # install woodblock sound
+  bld.install_files('${PREFIX}/share/sounds/aubio/',
+      'sounds/woodblock.aiff')
+  """
+
+  bld( source = 'aubio.pc.in' )
 
   # build manpages from sgml files
   if bld.env['DOCBOOKTOMAN']:
-    import TaskGen
+    from waflib import TaskGen
+    if 'MANDIR' not in bld.env:
+      bld.env['MANDIR'] = bld.env['PREFIX'] + '/share/man'
     TaskGen.declare_chain(
-        name    = 'docbooktoman',
-        rule    = '${DOCBOOKTOMAN} ${SRC} > ${TGT}',
-        ext_in  = '.sgml',
-        ext_out = '.1',
-        reentrant = 0,
+        name      = 'docbooktoman',
+        rule      = '${DOCBOOKTOMAN} ${SRC} > ${TGT}',
+        ext_in    = '.sgml',
+        ext_out   = '.1',
+        reentrant = False,
+        install_path =  '${MANDIR}/man1',
     )
-    manpages = bld.new_task_gen(name = 'docbooktoman', 
-        source=bld.path.ant_glob('doc/*.sgml'))
-    bld.install_files('${MANDIR}/man1', bld.path.ant_glob('doc/*.1'))
+    bld( source = bld.path.ant_glob('doc/*.sgml') )
 
-  if bld.env['HAVE_M_PD_H']:
-    bld.add_subdirs('plugins/puredata')
-
-  # install woodblock sound
-  bld.install_files('${PREFIX}/share/sounds/aubio/', 
-      'sounds/woodblock.aiff')
+  """
+  bld(rule = 'doxygen ${SRC}', source = 'web.cfg') #, target = 'doc/web/index.html')
+  """
 
-  # build and run the unit tests
-  build_tests(bld)
-  import UnitTest
-  bld.add_post_fun(UnitTest.summary)
 
 def shutdown(bld):
-  pass
-
-# loop over all *.c filenames in tests/src to build them all
-# target name is filename.c without the .c
-def build_tests(bld):
-  for target_name in bld.path.ant_glob('tests/src/**/*.c').split():
-    this_target = bld.new_task_gen(
-        features = 'cc cprogram test',
-        source = target_name,
-        target = target_name.split('.')[0],
-        includes = 'src',
-        uselib_local = 'aubio')
-    # phasevoc-jack also needs aubioext
-    if target_name.endswith('test-phasevoc-jack.c'):
-      this_target.includes = ['src', 'ext']
-      this_target.uselib_local = ['aubio', 'aubioext']
+    from waflib import Options, Logs
+    if Options.platform in ['ios', 'iosimulator']:
+          msg ='aubio built for ios, contact the author for a commercial license'
+          Logs.pprint('RED', msg)
+          msg ='   Paul Brossier <piem@aubio.org>'
+          Logs.pprint('RED', msg)