From 6f74c101406125e08f10e01ef2cb392b80f8d580 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Mon, 19 Aug 2019 13:53:09 +0200 Subject: [PATCH] Added versions.h file to track software versions --- src/app/versions.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/app/versions.h diff --git a/src/app/versions.h b/src/app/versions.h new file mode 100644 index 0000000..7fbaa90 --- /dev/null +++ b/src/app/versions.h @@ -0,0 +1,12 @@ +#ifndef VERSIONS_H +#define VERSIONS_H + +/** + * Here is listed the version history of the soft with some information about them. + * + * Versioning scheme MAJOR.MINOR.PATCH + */ + +#define SOFT_VERSION "1.0.0" //First version tracking + +#endif //VERSIONS_H