From 8276cb927bafd338be237adbecf437e70042da99 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 26 Apr 2017 15:52:15 +0200 Subject: Implement version module --- build2/version/module | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 build2/version/module (limited to 'build2/version/module') diff --git a/build2/version/module b/build2/version/module new file mode 100644 index 0000000..d5c1f01 --- /dev/null +++ b/build2/version/module @@ -0,0 +1,32 @@ +// file : build2/version/module -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BUILD2_VERSION_MODULE +#define BUILD2_VERSION_MODULE + +#include +#include + +#include + +#include + +namespace build2 +{ + namespace version + { + struct module: module_base + { + static const string name; + + butl::standard_version version; + bool version_patched; // True if snapshot was patched in. + + module (butl::standard_version v, bool vp) + : version (move (v)), version_patched (vp) {} + }; + } +} + +#endif // BUILD2_VERSION_MODULE -- cgit v1.1