Fix harmless extravagent extra multiplies.
[libdcp.git] / cscript
diff --git a/cscript b/cscript
index f0e281288d9219ea03828202910c1fae2dcc07d0..3bca50ec608925d07b48ef619a9c9af40133f6f2 100644 (file)
--- a/cscript
+++ b/cscript
@@ -1,7 +1,24 @@
-release_targets = ['source']
+import os
 
-def build(prefix):
-    command("""CXXFLAGS=-I%s/include LINKFLAGS=-L%s/lib PKG_CONFIG_PATH=%s/lib/pkgconfig
-               ./waf configure --static-openjpeg --static-libdcp --prefix=%s build install""" % (prefix, prefix, prefix, prefix))
+def dependencies(target):
+    return (('libcxml', 'v0.11.0'), ('openjpeg-cdist', '5d8bffd'))
 
+def build(target, options):
+    cmd = './waf configure --prefix=%s' % target.directory
+    if target.platform == 'linux':
+        cmd += ' --static --disable-tests'
+    elif target.platform == 'windows':
+        cmd += ' --target-windows'
+    elif target.platform == 'osx':
+        cmd += ' --osx'
 
+    if target.debug:
+        cmd += ' --enable-debug'
+
+    target.command(cmd)
+    target.command('./waf build install')
+
+def make_doxygen(target):
+    os.makedirs('build/doc')
+    target.command('doxygen')
+    return os.path.abspath('build/doc/html')