summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/common/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/common/version.h')
-rw-r--r--src/3rdparty/angle/src/common/version.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/3rdparty/angle/src/common/version.h b/src/3rdparty/angle/src/common/version.h
new file mode 100644
index 0000000000..fec98a15c9
--- /dev/null
+++ b/src/3rdparty/angle/src/common/version.h
@@ -0,0 +1,10 @@
+#define MAJOR_VERSION 1
+#define MINOR_VERSION 0
+#define BUILD_VERSION 0
+#define BUILD_REVISION 1318
+
+#define STRINGIFY(x) #x
+#define MACRO_STRINGIFY(x) STRINGIFY(x)
+
+#define REVISION_STRING MACRO_STRINGIFY(BUILD_REVISION)
+#define VERSION_STRING MACRO_STRINGIFY(MAJOR_VERSION) "." MACRO_STRINGIFY(MINOR_VERSION) "." MACRO_STRINGIFY(BUILD_VERSION) "." MACRO_STRINGIFY(BUILD_REVISION)