1 // For a release version x.y the MAJOR should be x and both MINOR and DEVMINOR should be y.
2 // After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
3 
4 #define CPPCHECK_MAJOR 2
5 #define CPPCHECK_MINOR 6
6 #define CPPCHECK_DEVMINOR 6
7 
8 #define STRINGIFY(x) STRING(x)
9 #define STRING(VER) #VER
10 #if CPPCHECK_MINOR == CPPCHECK_DEVMINOR
11 #define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." STRINGIFY(CPPCHECK_DEVMINOR) ".3"
12 #define CPPCHECK_VERSION CPPCHECK_MAJOR,CPPCHECK_MINOR,1,0
13 #else
14 #define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." STRINGIFY(CPPCHECK_DEVMINOR) " dev"
15 #define CPPCHECK_VERSION CPPCHECK_MAJOR,CPPCHECK_MINOR,99,0
16 #endif
17 #define LEGALCOPYRIGHT L"Copyright (C) 2007-2021 Cppcheck team."
18