aboutsummaryrefslogtreecommitdiff
path: root/xml
diff options
context:
space:
mode:
Diffstat (limited to 'xml')
-rw-r--r--xml/buildfile9
-rw-r--r--xml/version27
-rw-r--r--xml/version.in41
3 files changed, 47 insertions, 30 deletions
diff --git a/xml/buildfile b/xml/buildfile
index fd16316..6ce4568 100644
--- a/xml/buildfile
+++ b/xml/buildfile
@@ -43,16 +43,19 @@ details/genx/c{ genx } \
details/genx/h{ genx } \
details/genx/doc{LICENSE README}
+hxx{version}: in{version} $src_root/file{manifest}
+hxx{version}: dist = true
+
details/genx/doc{README}@./: install = false
details/genx/doc{LICENSE}@./: install = doc/GENX-LICENSE
# For pre-releases use the complete version to make sure they cannot be used
# in place of another pre-release or the final version.
#
-if $abi_prerelease
- lib{studxml}: bin.lib.version = @-$version
+if $version.pre_release
+ lib{studxml}: bin.lib.version = @"-$version.project_id"
else
- lib{studxml}: bin.lib.version = @-$abi_major.$abi_minor
+ lib{studxml}: bin.lib.version = @"-$version.major.$version.minor"
# We are a mixed C/C++ library, though C is implementatio-only, kind of: we
# need headers but not symbols.
diff --git a/xml/version b/xml/version
deleted file mode 100644
index fe56253..0000000
--- a/xml/version
+++ /dev/null
@@ -1,27 +0,0 @@
-// file : xml/version -*- C++ -*-
-// copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC
-// license : MIT; see accompanying LICENSE file
-
-#ifndef LIBSTUDXML_VERSION // Note: using the version macro itself.
-
-// Version format is AABBCCDD where
-//
-// AA - major version number
-// BB - minor version number
-// CC - bugfix version number
-// DD - alpha / beta (DD + 50) version number
-//
-// When DD is not 00, 1 is subtracted from AABBCC. For example:
-//
-// Version AABBCCDD
-// 2.0.0 02000000
-// 2.1.0 02010000
-// 2.1.1 02010100
-// 2.2.0-a1 02019901
-// 3.0.0-b2 02999952
-//
-
-#define LIBSTUDXML_VERSION 1009905
-#define LIBSTUDXML_VERSION_STR "1.1.0-a5"
-
-#endif // LIBSTUDXML_VERSION
diff --git a/xml/version.in b/xml/version.in
new file mode 100644
index 0000000..1520b52
--- /dev/null
+++ b/xml/version.in
@@ -0,0 +1,41 @@
+// file : xml/version -*- C++ -*-
+// copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBSTUDXML_VERSION // Note: using the version macro itself.
+
+// Note: using build2 standard versioning scheme. The numeric version format
+// is AAABBBCCCDDDE where:
+//
+// AAA - major version number
+// BBB - minor version number
+// CCC - bugfix version number
+// DDD - alpha / beta (DDD + 500) version number
+// E - final (0) / snapshot (1)
+//
+// When DDDE is not 0, 1 is subtracted from AAABBBCCC. For example:
+//
+// Version AAABBBCCCDDDE
+//
+// 0.1.0 0000010000000
+// 0.1.2 0000010010000
+// 1.2.3 0010020030000
+// 2.2.0-a.1 0020019990010
+// 3.0.0-b.2 0029999995020
+// 2.2.0-a.1.z 0020019990011
+//
+
+#define LIBSTUDXML_VERSION $libstudxml.version.project_number$ULL
+#define LIBSTUDXML_VERSION_STR "$libstudxml.version.project$"
+#define LIBSTUDXML_VERSION_ID "$libstudxml.version.project_id$"
+
+#define LIBSTUDXML_VERSION_MAJOR $libstudxml.version.major$
+#define LIBSTUDXML_VERSION_MINOR $libstudxml.version.minor$
+#define LIBSTUDXML_VERSION_PATCH $libstudxml.version.patch$
+
+#define LIBSTUDXML_PRE_RELEASE $libstudxml.version.pre_release$
+
+#define LIBSTUDXML_SNAPSHOT $libstudxml.version.snapshot_sn$ULL
+#define LIBSTUDXML_SNAPSHOT_ID "$libstudxml.version.snapshot_id$"
+
+#endif // LIBSTUDXML_VERSION