milsko/include/Mw/Version.h
IoIxD e79bffa5c6
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
1.0a but with the correct patch level
2026-04-27 01:12:27 -07:00

33 lines
458 B
C

/*!
* @file Mw/Version.h
* @brief Version informations
*/
#ifndef __MW_VERSION_H__
#define __MW_VERSION_H__
/*!
* @brief Major version
*/
#define MwMAJOR 1
/*!
* @brief Minor version
*/
#define MwMINOR 0
/*!
* @brief Patchlevel of version, calculated by `patchlevel_alphabet - 'a'`
*/
#define MwPATCH 1
/*!
* @brief Version in string
*/
#define MwVERSION "1.0a"
/*!
* @brief Version in string
*/
MWDECL const char* MwVersionString;
#endif