SmingVersion.h
Go to the documentation of this file.
1 /*
2  * Sming version information
3  *
4  * https://github.com/semver/semver/blob/master/semver.md
5  *
6  */
7 
8 #define SMING_MAJOR_VERSION 5
9 #define SMING_MINOR_VERSION 1
10 #define SMING_PATCH_VERSION 0
11 #define SMING_PRE_RELEASE ""
12 
13 #define MACROQUOT(x) #x
14 #define MACROQUOTE(x) MACROQUOT(x)
15 
16 // Version string, e.g. 3.8.0-dev
17 #define SMING_VERSION \
18  MACROQUOTE(SMING_MAJOR_VERSION) \
19  "." MACROQUOTE(SMING_MINOR_VERSION) "." MACROQUOTE(SMING_PATCH_VERSION) SMING_PRE_RELEASE