diff options
author | David Robillard <d@drobilla.net> | 2008-10-01 14:18:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-01 14:18:46 +0000 |
commit | eb57e325abcfef5324b428092a52fd440ffb3126 (patch) | |
tree | 5e1308bce782589aa3b418c52f91fa52b3a43447 /wscript | |
parent | 7668ddc2ed7794416c0136180689b82f7c76d7c3 (diff) | |
download | raul-eb57e325abcfef5324b428092a52fd440ffb3126.tar.gz raul-eb57e325abcfef5324b428092a52fd440ffb3126.tar.bz2 raul-eb57e325abcfef5324b428092a52fd440ffb3126.zip |
Library versioning.
Work on documentation buildding.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1573 a436a847-0d15-0410-975c-d299462d15a1
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/*') + |