11 lines
338 B
C++
11 lines
338 B
C++
|
|
#include "version.h"
|
|
|
|
namespace version
|
|
{
|
|
const std::string_view git_hash= "@GIT_HASH@";
|
|
const std::string_view git_tag= "@GIT_TAG@";
|
|
const std::string_view git_branch= "@GIT_BRANCH@";
|
|
const std::string_view git_commit_time= "@GIT_COMMIT_TIME@";
|
|
const std::string_view build_time= "@BUILD_TIME@";
|
|
}//namespace version
|