aboutsummaryrefslogtreecommitdiff
path: root/brep/version.in
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-04-29 23:55:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-04-30 23:57:17 +0300
commit8f3d3956b1e837c726859eb8bbe19dad79c54a42 (patch)
tree81ded52db212b12c7f685165702cce90aa0233cf /brep/version.in
parentea60a6df471706a0eeb5ff1f774d69abe89e4bc9 (diff)
Add hxx extension for headers and lib prefix for library dirs
Diffstat (limited to 'brep/version.in')
-rw-r--r--brep/version.in74
1 files changed, 0 insertions, 74 deletions
diff --git a/brep/version.in b/brep/version.in
deleted file mode 100644
index a5b236e..0000000
--- a/brep/version.in
+++ /dev/null
@@ -1,74 +0,0 @@
-// file : brep/version.in -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BREP_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 BREP_VERSION $brep.version.project_number$ULL
-#define BREP_VERSION_STR "$brep.version.project$"
-#define BREP_VERSION_ID "$brep.version.project_id$"
-
-#define BREP_VERSION_MAJOR $brep.version.major$
-#define BREP_VERSION_MINOR $brep.version.minor$
-#define BREP_VERSION_PATCH $brep.version.patch$
-
-#define BREP_PRE_RELEASE $brep.version.pre_release$
-
-#define BREP_SNAPSHOT $brep.version.snapshot_sn$ULL
-#define BREP_SNAPSHOT_ID "$brep.version.snapshot_id$"
-
-#include <butl/version>
-
-$libbutl.check(LIBBUTL_VERSION, LIBBUTL_SNAPSHOT)$
-
-#include <bpkg/version>
-
-$libbpkg.check(LIBBPKG_VERSION, LIBBPKG_SNAPSHOT)$
-
-#include <bbot/version>
-
-$libbbot.check(LIBBBOT_VERSION, LIBBBOT_SNAPSHOT)$
-
-#include <odb/version.hxx>
-
-$libodb.check(LIBODB_VERSION, LIBODB_SNAPSHOT)$
-
-#include <odb/pgsql/version.hxx>
-
-$libodb-pgsql.check(LIBODB_PGSQL_VERSION, LIBODB_PGSQL_SNAPSHOT)$
-
-// @@ Not really the correct place for the check since we don't use
-// it here.
-//
-/*
-#include <xml/version>
-
-$libstudxml.check(LIBSTUDXML_VERSION, LIBSTUDXML_SNAPSHOT)$
-*/
-
-// For now these are the same.
-//
-#define LIBBREP_VERSION BREP_VERSION
-#define LIBBREP_VERSION_STR BREP_VERSION_STR
-
-#endif // BREP_VERSION