summaryrefslogtreecommitdiffhomepage
path: root/include/ocl/version.hpp
blob: 9aaaf112d3a1708ae4f96d522bb440016a14701c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 "develop-00_"

#endif