mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-04-22 05:39:54 +08:00
22 lines
513 B
CMake
22 lines
513 B
CMake
// If this file is named draco_version.cc.cmake:
|
|
// This file is used as input at cmake generation time.
|
|
|
|
// If this file is named draco_version.cc:
|
|
// GENERATED FILE, DO NOT EDIT. SEE ABOVE.
|
|
#include "draco_version.h"
|
|
|
|
static const char kDracoGitHash[] = "${draco_git_hash}";
|
|
static const char kDracoGitDesc[] = "${draco_git_desc}";
|
|
|
|
const char *draco_git_hash() {
|
|
return kDracoGitHash;
|
|
}
|
|
|
|
const char *draco_git_version() {
|
|
return kDracoGitDesc;
|
|
}
|
|
|
|
const char* draco_version() {
|
|
return draco::Version();
|
|
}
|