fixes to scm_rev generation to make it conistent with windows build

This commit is contained in:
bunnei 2014-04-23 19:13:00 -07:00
parent 121960a2eb
commit 80a040ac77
4 changed files with 34 additions and 5 deletions

View file

@ -5,13 +5,13 @@
#include "common/scm_rev.h"
#define GIT_REV "@GIT_REV@"
#define GIT_REF_SPEC "@GIT_REF_SPEC@"
#define GIT_BRANCH "@GIT_BRANCH@"
#define GIT_DESC "@GIT_DESC@"
namespace Common {
const char g_scm_rev[] = GIT_REV;
const char g_scm_ref_spec[] = GIT_REF_SPEC;
const char g_scm_ref_spec[] = GIT_BRANCH;
const char g_scm_desc[] = GIT_DESC;
} // namespace