Silicium
version.hpp
Go to the documentation of this file.
1 #ifndef SILICIUM_VERSION_HPP
2 #define SILICIUM_VERSION_HPP
3 
4 #define SILICIUM_MAJOR_VERSION 0
5 #define SILICIUM_MINOR_VERSION 1
6 #define SILICIUM_PATCH_VERSION 0
7 
8 #define SILICIUM_MAKE_VERSION(major, minor, patch) ((((major * 100) + minor) * 100) + patch)
9 #define SILICIUM_VERSION SILICIUM_MAKE_VERSION(SILICIUM_MAJOR_VERSION, SILICIUM_MINOR_VERSION, SILICIUM_PATCH_VERSION)
10 
11 #endif