mutable
A Database System for Research and Fast Prototyping
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <mutable/mutable-config.hpp>
4
5namespace m {
6
7namespace version {
8
9#define X(KEY, VALUE) static constexpr const char *KEY = #VALUE;
10#include "gitversion.tbl"
11#undef X
12
14{
15 const char *GIT_REV;
16 const char *GIT_BRANCH;
17 const char *SEM_VERSION;
18};
19
20M_EXPORT const version_info & get();
21
22}
23
24}
M_EXPORT const version_info & get()
Definition: version.cpp:4
‍mutable namespace
Definition: Backend.hpp:10
const char * SEM_VERSION
Definition: version.hpp:17
const char * GIT_BRANCH
Definition: version.hpp:16
const char * GIT_REV
Definition: version.hpp:15