diff options
Diffstat (limited to 'Source/Version.h')
-rw-r--r-- | Source/Version.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/Version.h b/Source/Version.h new file mode 100644 index 0000000..088b618 --- /dev/null +++ b/Source/Version.h | |||
@@ -0,0 +1,12 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #define MAJOR 3 | ||
4 | #define MINOR 0 | ||
5 | #define PATCH 1 | ||
6 | |||
7 | #define VERSION MAJOR, MINOR, PATCH, 0 | ||
8 | |||
9 | #define TO_STRING(s) #s | ||
10 | #define VERSION_STR TO_STRING(MAJOR) "." TO_STRING(MINOR) "." TO_STRING(PATCH) ".0" | ||
11 | |||
12 | #define PRODUCT_NAME "Witness Randomizer" | ||