/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
build_version.hpp.in
18 строк
493 B
LaGrunge
Version namespace
20 авг 2019, 18:33
20 авг 2019, 18:33
d5b9f66
Код
Авторство
О чём код?
// 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 @PROJECT_NAME@ { namespace build_version { namespace git { constexpr char const * const kHash = "@GIT_HASH@"; constexpr char const * const kTag = "@GIT_TAG@"; constexpr uint64_t kTimestamp = @GIT_TIMESTAMP@; constexpr char const * const kProjectName = "@PROJECT_NAME@"; } // namespace git } // namespace build_version } // namespace @PROJECT_NAME@