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