summary refs log tree commit diff stats
path: root/Source/Version.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Version.h')
-rw-r--r--Source/Version.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Version.h b/Source/Version.h index cd79def..ed79ee5 100644 --- a/Source/Version.h +++ b/Source/Version.h
@@ -4,10 +4,11 @@
4#define MINOR 0 4#define MINOR 0
5#define PATCH 1 5#define PATCH 1
6 6
7#define VERSION MAJOR, MINOR, PATCH, 0 7#define VERSION MAJOR, MINOR, PATCH
8 8
9#define TO_STRING(s) #s 9#define TO_STRING2(s) L#s
10#define VERSION_STR TO_STRING(MAJOR) "." TO_STRING(MINOR) "." TO_STRING(PATCH) ".0" 10#define TO_STRING(s) TO_STRING2(s)
11#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH)
11 12
12#define PRODUCT_NAME L"Witness Randomizer" 13#define PRODUCT_NAME L"Witness Randomizer"
13#define WINDOW_CLASS L"WitnessRandomizer" 14#define WINDOW_CLASS L"WitnessRandomizer"