Incorrectly-expressed dependency.
[libsub.git] / cscript
diff --git a/cscript b/cscript
index 03f4bf600b5f959140a484146736a014182b1889..473cac2eaf3048185065c2e886622d3c9c1766b5 100644 (file)
--- a/cscript
+++ b/cscript
@@ -1,15 +1,20 @@
 import os
 
+def dependencies(target):
+    return (('asdcplib-cth', 'v0.1.0'), ('libcxml', 'v0.15.1'))
+
 def build(target, options):
     cmd = './waf configure --prefix=%s' % target.directory
     if target.platform == 'linux':
         cmd += ' --static'
+        if target.distro == 'centos':
+            cmd += ' --disable-tests'
+        if (target.distro == 'debian' and target.version == 'unstable' or target.distro == 'fedora' and target.version == '23'):
+            target.append_with_space('CXXFLAGS', '-std=c++11')
     if target.debug:
         cmd += ' --enable-debug'
     if target.platform == 'windows':
         cmd += ' --target-windows --disable-tests'
-    if target.distro == 'centos':
-        cmd += ' --disable-tests'
 
     target.command(cmd)
     target.command('./waf build install')
@@ -18,3 +23,8 @@ def make_doxygen(target):
     os.makedirs('build/doc')
     target.command('doxygen')
     return os.path.abspath('build/doc/html')
+
+def test(target):
+    if target.platform != 'windows':
+        target.set('LC_ALL', 'C')
+        target.command('run/tests')