No-commit versioning.
[asdcplib-cth.git] / wscript
diff --git a/wscript b/wscript
index aba24a30b16a0720b71acfd93fae9f32b46aa8a8..2e0209a930655e24b0567e3ad72f23b72d9605fc 100644 (file)
--- a/wscript
+++ b/wscript
@@ -1,11 +1,19 @@
 import subprocess
+import shlex
 import os
 import sys
 import distutils.spawn
 from waflib import Logs
 
 APPNAME = 'libasdcp-cth'
-VERSION = '0.1.2'
+
+this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
+last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
+
+if this_version == '':
+    VERSION = '%sdevel' % last_version[1:].strip()
+else:
+    VERSION = this_version[1:].strip()
 
 def options(opt):
     opt.load('compiler_cxx')
@@ -64,6 +72,8 @@ def configure(conf):
                    lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
                    uselib_store='BOOST_FILESYSTEM')
 
+    conf.check(header_name='valgrind/memcheck.h', mandatory=False)
+
     conf.recurse('src')
 
 def build(bld):