aboutsummaryrefslogtreecommitdiff
path: root/libbutl/version.hxx.in
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-01 16:08:43 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-01 16:59:24 +0300
commit61377c582e0f2675baa5f5e6e30a35d1a4164b33 (patch)
tree11cdca992834d7f7f197f72856712fbcb3020e3d /libbutl/version.hxx.in
parent442c1a6790e52baa0c081f310d4d9e9b6f1ff638 (diff)
Add hxx extension for headers and lib prefix for library dir
Diffstat (limited to 'libbutl/version.hxx.in')
-rw-r--r--libbutl/version.hxx.in40
1 files changed, 40 insertions, 0 deletions
diff --git a/libbutl/version.hxx.in b/libbutl/version.hxx.in
new file mode 100644
index 0000000..780d21a
--- /dev/null
+++ b/libbutl/version.hxx.in
@@ -0,0 +1,40 @@
+// file : libbutl/version.hxx.in -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef LIBBUTL_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 LIBBUTL_VERSION $libbutl.version.project_number$ULL
+#define LIBBUTL_VERSION_STR "$libbutl.version.project$"
+#define LIBBUTL_VERSION_ID "$libbutl.version.project_id$"
+
+#define LIBBUTL_VERSION_MAJOR $libbutl.version.major$
+#define LIBBUTL_VERSION_MINOR $libbutl.version.minor$
+#define LIBBUTL_VERSION_PATCH $libbutl.version.patch$
+
+#define LIBBUTL_PRE_RELEASE $libbutl.version.pre_release$
+
+#define LIBBUTL_SNAPSHOT $libbutl.version.snapshot_sn$ULL
+#define LIBBUTL_SNAPSHOT_ID "$libbutl.version.snapshot_id$"
+
+#endif // LIBBUTL_VERSION