Version now includes dirty status on exact version tags too

This commit is contained in:
rexy712
2018-12-16 07:18:31 -08:00
parent 00062612f5
commit 3c2e3f35a0
3 changed files with 10 additions and 1 deletions

View File

@@ -22,7 +22,11 @@
#include "version.h"
#ifdef GIT_TAG_NAME
#define REXBACKLIGHT_VERSION GIT_TAG_NAME
#ifdef GIT_DIRTY
#define REXBACKLIGHT_VERSION GIT_TAG_NAME "-dirty"
#else
#define REXBACKLIGHT_VERSION GIT_TAG_NAME
#endif
#else
#define REXBACKLIGHT_VERSION GIT_BRANCH_NAME "-" GIT_COMMIT_HASH
#endif