From 61377c582e0f2675baa5f5e6e30a35d1a4164b33 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 1 May 2017 16:08:43 +0300 Subject: Add hxx extension for headers and lib prefix for library dir --- libbutl/version.hxx.in | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 libbutl/version.hxx.in (limited to 'libbutl/version.hxx.in') 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 -- cgit v1.1