-
Notifications
You must be signed in to change notification settings - Fork 1
/
version.h
41 lines (33 loc) · 1.35 KB
/
version.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
#define STRINGIZE2(s) #s
#define STRINGIZE(s) STRINGIZE2(s)
// Will be automatically increased by increment-VER_BUILDNO.py
// cmd: python increment-VER_BUILDNO.py $(MSBuildProjectDirectory) version.h
#define VER_BUILDNO 28
// Will be automatically increased by get-git-rev-HEAD.py
// cmd: python get-git-rev-HEAD.py $(MSBuildProjectDirectory) version.h
#define VER_BUILD 1038c86
#define VERSION_MAJOR 0
#define VERSION_MINOR 9
#define VERSION_REVISION VER_BUILDNO
#define VERSION_BUILD VER_BUILD
#define VER_FILE_DESCRIPTION_STR "Rexroth Indradrive API"
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION
#define VER_FILE_VERSION_STR STRINGIZE(VERSION_MAJOR) \
"." STRINGIZE(VERSION_MINOR) \
"." STRINGIZE(VERSION_REVISION) \
"." STRINGIZE(VERSION_BUILD) \
#define VER_PRODUCTNAME_STR "Indradrive Wrapper"
#define VER_PRODUCT_VERSION VER_FILE_VERSION
#define VER_PRODUCT_VERSION_STR VER_FILE_VERSION_STR
#define VER_ORIGINAL_FILENAME_STR "IndradriveWrapper.dll"
#define VER_INTERNAL_NAME_STR VER_ORIGINAL_FILENAME_STR
#define VER_COPYRIGHT_STR "Copyright (2017) Robert Hahn"
#ifdef _DEBUG
#define VER_VER_DEBUG VS_FF_DEBUG
#else
#define VER_VER_DEBUG 0
#endif
#define VER_FILEOS VOS_NT_WINDOWS32
#define VER_FILEFLAGS VER_VER_DEBUG
#define VER_FILETYPE VFT_DLL