Welcome to mirror list, hosted at ThFree Co, Russian Federation.

draco_version.h.cmake « cmake « dracoenc « draco « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 506423ed34cd970320be0ec70a4b9d2d03068ed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// If this file is named draco_version.h.cmake:
// This file is used as input at cmake generation time.

// If this file is named draco_version.h:
// GENERATED FILE, DO NOT EDIT. SEE ABOVE.
#ifndef DRACO_DRACO_VERSION_H_
#define DRACO_DRACO_VERSION_H_

#include "draco/core/draco_version.h"

// Returns git hash of Draco git repository.
const char *draco_git_hash();

// Returns the output of the git describe command when run from the Draco git
// repository.
const char *draco_git_version();

// Returns the version string from core/draco_version.h.
const char* draco_version();

#endif  // DRACO_DRACO_VERSION_H_