aboutsummaryrefslogtreecommitdiff
path: root/msvc-common/version-impl.in
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-01 17:15:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-01 17:15:50 +0300
commit346b103d47f5c59e573f643a63d4d864c0d6e868 (patch)
tree97fdb65b382fba2b9ea884d77df873d5dc2499b8 /msvc-common/version-impl.in
parenta78bb6294e00af3f7d8e72a64e613adf1f743311 (diff)
Add hxx extension for header
Diffstat (limited to 'msvc-common/version-impl.in')
-rw-r--r--msvc-common/version-impl.in44
1 files changed, 0 insertions, 44 deletions
diff --git a/msvc-common/version-impl.in b/msvc-common/version-impl.in
deleted file mode 100644
index 3e787f3..0000000
--- a/msvc-common/version-impl.in
+++ /dev/null
@@ -1,44 +0,0 @@
-// file : msvc-common/version-impl.in -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef MSVC_FILTER_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 MSVC_FILTER_VERSION $msvc-linux.version.project_number$ULL
-#define MSVC_FILTER_VERSION_STR "$msvc-linux.version.project$"
-#define MSVC_FILTER_VERSION_ID "$msvc-linux.version.project_id$"
-
-#define MSVC_FILTER_VERSION_MAJOR $msvc-linux.version.major$
-#define MSVC_FILTER_VERSION_MINOR $msvc-linux.version.minor$
-#define MSVC_FILTER_VERSION_PATCH $msvc-linux.version.patch$
-
-#define MSVC_FILTER_PRE_RELEASE $msvc-linux.version.pre_release$
-
-#define MSVC_FILTER_SNAPSHOT $msvc-linux.version.snapshot_sn$ULL
-#define MSVC_FILTER_SNAPSHOT_ID "$msvc-linux.version.snapshot_id$"
-
-#include <butl/version>
-
-$libbutl.check(LIBBUTL_VERSION, LIBBUTL_SNAPSHOT)$
-
-#endif // MSVC_FILTER_VERSION