fsfw/src/fsfw/FSFWVersion.h.in

12 lines
424 B
C
Raw Normal View History

2021-10-07 13:26:31 +02:00
#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
2022-05-10 11:51:25 +02:00
static const char FSFW_VCS_INFO[] = "@FSFW_VCS_INFO@";
2021-10-07 13:26:31 +02:00
#endif /* FSFW_VERSION_H_ */