fsfw/src/fsfw/FSFWVersion.h.in
Robin Mueller 18f9958332
Some checks failed
fsfw/fsfw/pipeline/pr-development There was a failure building this commit
add git CST and sha info to version ctor
2022-04-22 15:39:44 +02:00

12 lines
448 B
C

#ifndef FSFW_VERSION_H_
#define FSFW_VERSION_H_
// Versioning is managed in project CMakeLists.txt file
static constexpr int FSFW_VERSION_MAJOR = @FSFW_VERSION@;
static constexpr int FSFW_VERSION_MINOR = @FSFW_SUBVERSION@;
static constexpr int FSFW_VERSION_REVISION = @FSFW_REVISION@;
// Also contains CST (Commits since tag) information
static const char FSFW_VERSION_CST_GIT_SHA1[] = "@FSFW_VERSION_CST_GIT_SHA1@";
#endif /* FSFW_VERSION_H_ */