Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_version.hpp.in - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a48c68e8042c5be9a7f6acd3deb13f39f5579d7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// A helper file that may be used to inject the git commit hash and the build time into a binary.
#pragma once

#include <cstdint>

namespace omim
{
namespace build_version
{
namespace git
{
constexpr char const * const kHash = "@GIT_HASH@";
constexpr uint64_t kTimestamp  = @GIT_TIMESTAMP@;
}  // namespace git
}  // namespace build_version
}  // namespace omim