wscript: add libs to examples for binutils-gold
[aubio.git] / wscript
diff --git a/wscript b/wscript
index eb09721004ed496b38089deb5657382b8f69d544..d0850c00f6044a64675ea2f7eb2ab68226a5ad47 100644 (file)
--- a/wscript
+++ b/wscript
@@ -1,9 +1,6 @@
 #! /usr/bin/python
 # 
-# TODO
-#  - plugins/puredata: add pd compilation
-#  - java: add swig compilation
-#  - doc: add docbook2html and doxygen
+#  - doc: add doxygen
 #  - tests: move to new unit test system 
 
 APPNAME = 'aubio'
@@ -20,14 +17,14 @@ def set_options(opt):
       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('--enable-complex', action='store_true', default=False,
+      help='compile with 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('--disable-libsamplerate', action='store_true', default=False,
+      help='compile without libsamplerate support')
   opt.add_option('--with-target-platform', type='string',
       help='set target platform for cross-compilation', dest='target_platform')
   opt.tool_options('compiler_cc')
@@ -56,14 +53,15 @@ def configure(conf):
   conf.check(header_name='limits.h')
 
   # optionally use complex.h
-  if (Options.options.disable_complex == False):
+  if (Options.options.enable_complex == True):
     conf.check(header_name='complex.h')
 
-  # required dependancies
+  # check dependencies
   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')
+  if (Options.options.disable_libsamplerate == False):
+      conf.check_cfg(package = 'libsamplerate', atleast_version = '0.0.15',
+        args = '--cflags --libs')
 
   # double precision mode
   if (Options.options.enable_double == True):
@@ -103,11 +101,6 @@ def configure(conf):
       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')
-
   # check support for C99 __VA_ARGS__ macros
   check_c99_varargs = '''
 #include <stdio.h>
@@ -121,9 +114,6 @@ def configure(conf):
   # write configuration header
   conf.write_config_header('src/config.h')
 
-  # check for puredata header
-  conf.check(header_name='m_pd.h')
-
   # add some defines used in examples 
   conf.define('AUBIO_PREFIX', conf.env['PREFIX'])
   conf.define('PACKAGE', APPNAME)
@@ -135,13 +125,13 @@ def build(bld):
   bld.env['VERSION'] = VERSION 
   bld.env['LIB_VERSION'] = LIB_VERSION 
 
+  build_extras(bld)
+
   # add sub directories
-  bld.add_subdirs('src examples interfaces/cpp')
+  bld.add_subdirs('src examples')
   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')
@@ -163,9 +153,6 @@ def build(bld):
         source=bld.path.ant_glob('doc/*.sgml'))
     bld.install_files('${MANDIR}/man1', bld.path.ant_glob('doc/*.1'))
 
-  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')
@@ -195,3 +182,21 @@ def build_tests(bld):
       this_target.uselib_local = ['aubio']
       this_target.uselib = ['JACK']
       this_target.source += ' examples/jackio.c'
+
+def build_extras(bld):
+    # corner cases to build these ones only once
+    sndfileio = bld.new_task_gen(features = 'cc',
+        includes = 'examples src',
+        source = ['examples/sndfileio.c'], 
+        target = 'sndfileio')
+
+    defines = ['AUBIO_PREFIX="' + bld.env['AUBIO_PREFIX'] + '"']
+    defines += ['PACKAGE="' + bld.env['PACKAGE'] + '"']
+
+    utilsio = bld.new_task_gen(features = 'cc',
+          includes = 'examples src',
+          add_objects = 'sndfileio',
+          source = ['examples/utils.c', 'examples/jackio.c'], 
+          uselib = ['LASH', 'JACK', 'SNDFILE'],
+          defines = defines, 
+          target = 'utilsio')