cppcheck/lib/version.h

15 lines
525 B
C

// For a release version x.y the MAJOR should be x and both MINOR and DEVMINOR should be y.
// After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
#define CPPCHECK_MAJOR 2
#define CPPCHECK_MINOR 4
#define CPPCHECK_DEVMINOR 4
#define STRINGIFY(x) STRING(x)
#define STRING(VER) #VER
#define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." STRINGIFY(CPPCHECK_MINOR) ".1"
#define CPPCHECK_VERSION CPPCHECK_MAJOR,CPPCHECK_MINOR,1,0
#define LEGALCOPYRIGHT L"Copyright (C) 2007-2021 Cppcheck team."