Version info

This commit is contained in:
Paul Hollinsky
2018-10-29 16:35:14 -04:00
parent 37ef932e03
commit 4f91d0775f
8 changed files with 80 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef __ICSNEO_API_BUILDINFO_H_
#define __ICSNEO_API_BUILDINFO_H_
const char* GIT_BRANCH = "@GIT_BRANCH@";
const char* GIT_DESCRIBE = "@GIT_DESCRIBE@";
const uint16_t BUILD_MAJOR = (@PROJECT_VERSION_MAJOR@);
const uint16_t BUILD_MINOR = (@PROJECT_VERSION_MINOR@);
const uint16_t BUILD_PATCH = (@PROJECT_VERSION_PATCH@);
const char* BUILD_METADATA = "@BUILD_METADATA@";
#endif