Coverage Report

Created: 2023-03-06 09:15

/src/assimp/revision.h
Line
Count
Source (jump to first uncovered line)
1
#ifndef ASSIMP_REVISION_H_INC
2
#define ASSIMP_REVISION_H_INC
3
4
27.5k
#define GitVersion 0x46ae8534
5
0
#define GitBranch "HEAD"
6
7
27.5k
#define VER_MAJOR 5
8
27.5k
#define VER_MINOR 2
9
0
#define VER_PATCH 5
10
#define VER_BUILD 0
11
12
#define STR_HELP(x) #x
13
#define STR(x) STR_HELP(x)
14
15
#define VER_FILEVERSION             VER_MAJOR,VER_MINOR,VER_PATCH,VER_BUILD
16
#if (GitVersion == 0)
17
#define VER_FILEVERSION_STR         STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD)
18
#else
19
#define VER_FILEVERSION_STR         STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_PATCH) "." STR(VER_BUILD) " (Commit 46ae8534)"
20
#endif
21
#define VER_COPYRIGHT_STR           "\xA9 2006-2022"
22
23
#ifdef  NDEBUG
24
#define VER_ORIGINAL_FILENAME_STR   "libassimp.dll"
25
#else
26
#define VER_ORIGINAL_FILENAME_STR   "libassimp.dll"
27
#endif //  NDEBUG
28
29
#endif // ASSIMP_REVISION_H_INC