draco_version.h.cmake 616 B

12345678910111213141516171819202122
  1. // If this file is named draco_version.h.cmake:
  2. // This file is used as input at cmake generation time.
  3. // If this file is named draco_version.h:
  4. // GENERATED FILE, DO NOT EDIT. SEE ABOVE.
  5. #ifndef DRACO_DRACO_VERSION_H_
  6. #define DRACO_DRACO_VERSION_H_
  7. #include "draco/core/draco_version.h"
  8. // Returns git hash of Draco git repository.
  9. const char *draco_git_hash();
  10. // Returns the output of the git describe command when run from the Draco git
  11. // repository.
  12. const char *draco_git_version();
  13. // Returns the version string from core/draco_version.h.
  14. const char* draco_version();
  15. #endif // DRACO_DRACO_VERSION_H_