aboutsummaryrefslogtreecommitdiff
path: root/main/version_info.cpp
blob: 372101d986fae995f6c2417689e5be5fba282fe5 (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 NULL
#endif
const char *enigma2_rev = ENIGMA2_REV;