summary refs log tree commit diff stats
path: root/Source/Version.h
diff options
context:
space:
mode:
authorjbzdarkid <jbzdarkid@gmail.com>2018-10-30 19:13:25 -0700
committerjbzdarkid <jbzdarkid@gmail.com>2018-10-30 19:13:25 -0700
commit1f28f8da49561b16e358082641b8ec4dd36f1cc9 (patch)
tree598c1bce7368ac3deaa89d2404dd45258dc1fa9c /Source/Version.h
parenta7eff32528fa73e361f5fb08829c1ac14a66c355 (diff)
downloadwitness-tutorializer-1f28f8da49561b16e358082641b8ec4dd36f1cc9.tar.gz
witness-tutorializer-1f28f8da49561b16e358082641b8ec4dd36f1cc9.tar.bz2
witness-tutorializer-1f28f8da49561b16e358082641b8ec4dd36f1cc9.zip
Probably good
Diffstat (limited to 'Source/Version.h')
-rw-r--r--Source/Version.h12
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"