blob: 851b57e41a8154fbffb2ad89ba35fb3ddda03c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// SPDX-License-Identifier: BSL-1.0
// Copyright 2023-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-foss-org/ocl
#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 0x016200
// This is the library version, which applies the following pattern:
// <semver> use it to detect what version of the OCL you're using.
#define OCL_LIB_VERSION "01_62_"
#endif
|