14 lines
610 B
C++
14 lines
610 B
C++
#include <stdint.h>
|
|
#include <graphene/utilities/git_revision.hpp>
|
|
|
|
#define GRAPHENE_GIT_REVISION_SHA "@GRAPHENE_GIT_REVISION_SHA@"
|
|
#define GRAPHENE_GIT_REVISION_UNIX_TIMESTAMP @GRAPHENE_GIT_REVISION_UNIX_TIMESTAMP@
|
|
#define GRAPHENE_GIT_REVISION_DESCRIPTION "@GRAPHENE_GIT_REVISION_DESCRIPTION@"
|
|
|
|
namespace graphene { namespace utilities {
|
|
|
|
const char* const git_revision_sha = GRAPHENE_GIT_REVISION_SHA;
|
|
const uint32_t git_revision_unix_timestamp = GRAPHENE_GIT_REVISION_UNIX_TIMESTAMP;
|
|
const char* const git_revision_description = GRAPHENE_GIT_REVISION_DESCRIPTION;
|
|
|
|
} } // end namespace graphene::utilities
|