Pre-Release v0.5 #54

Merged
mhu merged 12 commits from dev into master 2023-01-03 16:37:53 +01:00
2 changed files with 8 additions and 4 deletions
Showing only changes of commit 2c2e4c1484 - Show all commits

View File

@ -21,7 +21,9 @@
#ifndef _VERSION_H_
#define _VERSION_H_
extern const char *git_version_string;
extern const char *git_full_commit_string;
extern const char *version_git_version_string;
extern const char *version_git_full_commit_string;
extern const char *version_compile_date;
extern const char *version_compile_time;
#endif /* _VERSION_H_ */

View File

@ -21,5 +21,7 @@
#include <reflow-controller/version.h>
#include <generated-version/version.h>
const char *git_version_string = GIT_VERSION_STRING;
const char *git_full_commit_string = GIT_FULL_COMMIT;
const char *version_git_version_string = GIT_VERSION_STRING;
const char *version_git_full_commit_string = GIT_FULL_COMMIT;
const char *version_compile_date = __DATE__;
const char *version_compile_time = __TIME__;