aboutsummaryrefslogtreecommitdiff
path: root/libbbot/version.hxx.in
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-29 23:23:07 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-30 21:47:39 +0300
commit79640be325c333d77b4078d37f7668b74d5682e3 (patch)
tree5b165704351e9914e1d0fa87b787d95603a970c1 /libbbot/version.hxx.in
parentd3c88705b3e3b77150f60aed2527fa60d658991e (diff)
Add hxx extension for headers and lib prefix for library dirs
Diffstat (limited to 'libbbot/version.hxx.in')
-rw-r--r--libbbot/version.hxx.in48
1 files changed, 48 insertions, 0 deletions
diff --git a/libbbot/version.hxx.in b/libbbot/version.hxx.in
new file mode 100644
index 0000000..6fca06c
--- /dev/null
+++ b/libbbot/version.hxx.in
@@ -0,0 +1,48 @@
+// file : libbbot/version.hxx.in -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBBOT_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 LIBBBOT_VERSION $libbbot.version.project_number$ULL
+#define LIBBBOT_VERSION_STR "$libbbot.version.project$"
+#define LIBBBOT_VERSION_ID "$libbbot.version.project_id$"
+
+#define LIBBBOT_VERSION_MAJOR $libbbot.version.major$
+#define LIBBBOT_VERSION_MINOR $libbbot.version.minor$
+#define LIBBBOT_VERSION_PATCH $libbbot.version.patch$
+
+#define LIBBBOT_PRE_RELEASE $libbbot.version.pre_release$
+
+#define LIBBBOT_SNAPSHOT $libbbot.version.snapshot_sn$ULL
+#define LIBBBOT_SNAPSHOT_ID "$libbbot.version.snapshot_id$"
+
+#include <butl/version>
+
+$libbutl.check(LIBBUTL_VERSION, LIBBUTL_SNAPSHOT)$
+
+#include <bpkg/version>
+
+$libbpkg.check(LIBBPKG_VERSION, LIBBPKG_SNAPSHOT)$
+
+#endif // LIBBBOT_VERSION