diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -5,6 +5,16 @@ import autowaf # Version of this package (even if built as a child) RAUL_VERSION = '0.5.1' +# Library version (UNIX style major, minor, micro) +# major increment <=> incompatible changes +# minor increment <=> compatible changes (additions) +# micro increment <=> no interface changes +# Version history: +# 0.4.0 = 0,0,0 +# 0.5.0 = 1,0,0 (SVN r1283) +# 0.5.1 = 2,0,0 +RAUL_LIB_VERSION = '2.0.0' + # Variables for 'waf dist' APPNAME = 'raul' VERSION = RAUL_VERSION @@ -50,7 +60,12 @@ def build(bld): obj.name = 'libraul' obj.target = 'raul' obj.uselib = 'GLIBMM GTHREAD JACK' - obj.vnum = '1.0.0' + obj.vnum = RAUL_LIB_VERSION # Unit tests bld.add_subdirs('tests') + + # Documentation + autowaf.build_dox(bld, 'RAUL', RAUL_VERSION, srcdir, blddir) + install_files('PREFIX', 'share/doc/raul', blddir + '/default/doc/html/*') + |