about summary refs log tree commit diff stats
path: root/Source/Version.h
blob: 088b6184a532828fcec386f2bc44f8ce5c438d03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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"