summaryrefslogtreecommitdiffhomepage
path: root/include/ocl
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-15 19:00:37 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-15 19:00:37 +0100
commit236f81d4f257ddaa1fff2946fe34cddc679c8997 (patch)
tree4690efd949c1aa6cfff2ed664ae617dd82aa505f /include/ocl
parent13021998c9afd59e8539ffcb90455f347bb36d39 (diff)
chore: new version.hpp header.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ocl')
-rw-r--r--include/ocl/version.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/ocl/version.hpp b/include/ocl/version.hpp
new file mode 100644
index 0000000..3752e49
--- /dev/null
+++ b/include/ocl/version.hpp
@@ -0,0 +1,14 @@
+#ifndef __OCL_VERSION_HPP
+#define __OCL_VERSION_HPP
+
+// This is a Binary Encoded Decimal of the OCL's version.
+// Which will be incremented each time a new release is done.
+
+#define OCL_VERSION 0x000000
+
+// This is the library version, which applies the following pattern:
+// <branch>-<major_version> use it to detect whether you're using stable or develop OCL.
+
+#define OCL_LIB_VERSION "stable-00_"
+
+#endif \ No newline at end of file