draco_version.cc.cmake 513 B

12345678910111213141516171819202122
  1. // If this file is named draco_version.cc.cmake:
  2. // This file is used as input at cmake generation time.
  3. // If this file is named draco_version.cc:
  4. // GENERATED FILE, DO NOT EDIT. SEE ABOVE.
  5. #include "draco_version.h"
  6. static const char kDracoGitHash[] = "${draco_git_hash}";
  7. static const char kDracoGitDesc[] = "${draco_git_desc}";
  8. const char *draco_git_hash() {
  9. return kDracoGitHash;
  10. }
  11. const char *draco_git_version() {
  12. return kDracoGitDesc;
  13. }
  14. const char* draco_version() {
  15. return draco::Version();
  16. }