diff options
Diffstat (limited to 'src/def.h')
-rw-r--r-- | src/def.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/def.h b/src/def.h new file mode 100644 index 0000000..4a17160 --- /dev/null +++ b/src/def.h @@ -0,0 +1,16 @@ +#ifndef DEF_H +#define DEF_H + +#ifndef GIT_HASH + #define GIT_HASH "unknown" +#endif + +#ifndef GIT_BRANCH + #define GIT_BRANCH "unknown" +#endif + +#ifndef BUILD_TIMESTAMP + #define BUILD_TIMESTAMP __TIMESTAMP__ +#endif + +#endif // DEF_H |