diff options
| author | RevoluPowered <gordon@gordonite.tech> | 2019-11-05 17:06:06 +0000 |
|---|---|---|
| committer | RevoluPowered <gordon@gordonite.tech> | 2019-11-05 20:38:26 +0000 |
| commit | 5fb160c7c692c469488f11aca90a36ac3248dfee (patch) | |
| tree | d1eba0971b63f8f8e39e6f2752fc8d9944960318 /thirdparty/assimp/code/revision.h | |
| parent | 0bd877780fb7b344b5ed1d2fa7765078616f069b (diff) | |
| download | redot-engine-5fb160c7c692c469488f11aca90a36ac3248dfee.tar.gz | |
Updated assimp to 308db73 from https://github.com/assimp/assimp/
Diffstat (limited to 'thirdparty/assimp/code/revision.h')
| -rw-r--r-- | thirdparty/assimp/code/revision.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/thirdparty/assimp/code/revision.h b/thirdparty/assimp/code/revision.h index 88872aef22..66eb875303 100644 --- a/thirdparty/assimp/code/revision.h +++ b/thirdparty/assimp/code/revision.h @@ -1,7 +1,28 @@ #ifndef ASSIMP_REVISION_H_INC #define ASSIMP_REVISION_H_INC -#define GitVersion 0x00000000 +#define GitVersion 0x308db73d #define GitBranch "master" +#define VER_MAJOR 5 +#define VER_MINOR 0 +#define VER_PATCH 0 +#define VER_BUILD 0 + +#define STR_HELP(x) #x +#define STR(x) STR_HELP(x) + +#define VER_FILEVERSION VER_MAJOR,VER_MINOR,VER_PATCH,VER_BUILD +#if (GitVersion == 0) +#define VER_FILEVERSION_STR STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD) +#else +#define VER_FILEVERSION_STR STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD) " (Commit 308db73d)" +#endif + +#ifdef NDEBUG +#define VER_ORIGINAL_FILENAME_STR "assimp.dll" +#else +#define VER_ORIGINAL_FILENAME_STR "assimp.dll" +#endif // NDEBUG + #endif // ASSIMP_REVISION_H_INC |
