mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-15 08:22:10 +00:00
Speeds up the build by moving those constants into a separate compile-unit. Currently, since the version header is auto regenerated on each build, all modules that include it, also have to be recompiled every time.
13 lines
162 B
C++
13 lines
162 B
C++
#ifndef _FIRMWARE_VERSION_h
|
|
#define _FIRMWARE_VERSION_h
|
|
|
|
|
|
class FirmwareVersion {
|
|
public:
|
|
static long BuildEpoch;
|
|
static const char* VersionString;
|
|
};
|
|
|
|
#endif
|
|
|