From 1f28f8da49561b16e358082641b8ec4dd36f1cc9 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Tue, 30 Oct 2018 19:13:25 -0700 Subject: Probably good --- Source/Version.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Source/Version.h (limited to 'Source/Version.h') 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 @@ +#pragma once + +#define MAJOR 3 +#define MINOR 0 +#define PATCH 1 + +#define VERSION MAJOR, MINOR, PATCH, 0 + +#define TO_STRING(s) #s +#define VERSION_STR TO_STRING(MAJOR) "." TO_STRING(MINOR) "." TO_STRING(PATCH) ".0" + +#define PRODUCT_NAME "Witness Randomizer" -- cgit 1.4.1