aboutsummaryrefslogtreecommitdiff
path: root/main/version_info.cpp
blob: a846c61379e07c3e26fec4f740d64b062ea66d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "version_info.h"
#include "version.h"

#ifndef ENIGMA2_LAST_CHANGE_DATE
#define ENIGMA2_LAST_CHANGE_DATE __DATE__
#endif
const char *enigma2_date = ENIGMA2_LAST_CHANGE_DATE;

#ifndef ENIGMA2_BRANCH
#define ENIGMA2_BRANCH "HEAD"
#endif
const char *enigma2_branch = ENIGMA2_BRANCH;

#ifndef ENIGMA2_REV
#define ENIGMA2_REV ""
#endif
const char *enigma2_rev = ENIGMA2_REV;