scm_rev.cpp.in 400 B

123456789101112131415161718
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #include "common/scm_rev.h"
  5. #define GIT_REV "@GIT_REV@"
  6. #define GIT_BRANCH "@GIT_BRANCH@"
  7. #define GIT_DESC "@GIT_DESC@"
  8. namespace Common {
  9. const char g_scm_rev[] = GIT_REV;
  10. const char g_scm_branch[] = GIT_BRANCH;
  11. const char g_scm_desc[] = GIT_DESC;
  12. } // namespace