We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3883b69 commit d54f831Copy full SHA for d54f831
include/RI/version.h
@@ -0,0 +1,14 @@
1
+// ===================
2
+// Author: Peize Lin
3
+// date: 2024.09.06
4
5
+
6
+#pragma once
7
8
+#define __LIBRI_VERSION_MAJOR 2
9
+#define __LIBRI_VERSION_MINOR 0
10
+#define __LIBRI_VERSION_PATCH 0
11
12
+#define __LIBRI_VERSION ( __LIBRI_VERSION_MAJOR * 10000 \
13
+ + __LIBRI_VERSION_MINOR * 100 \
14
+ + __LIBRI_VERSION_PATCH)
0 commit comments