mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
26 lines
769 B
C
26 lines
769 B
C
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation.h
|
|
//
|
|
// Version and build information.
|
|
//
|
|
|
|
#ifndef ES_APP_EMULATION_STATION_H
|
|
#define ES_APP_EMULATION_STATION_H
|
|
|
|
// These numbers and strings need to be manually updated for a new version.
|
|
// Do this version number update as the very last commit for the new release version.
|
|
// clang-format off
|
|
#define PROGRAM_VERSION_MAJOR 2
|
|
#define PROGRAM_VERSION_MINOR 0
|
|
#define PROGRAM_VERSION_MAINTENANCE 0
|
|
// clang-format on
|
|
#define PROGRAM_VERSION_STRING "2.0.0-alpha"
|
|
|
|
#define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__
|
|
|
|
#define RESOURCE_VERSION_STRING "2,0,0\0"
|
|
#define RESOURCE_VERSION PROGRAM_VERSION_MAJOR, PROGRAM_VERSION_MINOR, PROGRAM_VERSION_MAINTENANCE
|
|
|
|
#endif // ES_APP_EMULATION_STATION_H
|