summaryrefslogtreecommitdiff
path: root/plugins/ClientChangeNotify/src/VersionNo.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ClientChangeNotify/src/VersionNo.h')
-rw-r--r--plugins/ClientChangeNotify/src/VersionNo.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/ClientChangeNotify/src/VersionNo.h b/plugins/ClientChangeNotify/src/VersionNo.h
new file mode 100644
index 0000000000..13ba7afb9f
--- /dev/null
+++ b/plugins/ClientChangeNotify/src/VersionNo.h
@@ -0,0 +1,11 @@
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 1
+#define __RELEASE_NUM 1
+#define __BUILD_NUM 3
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)