mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00

This commits add a new global constant containing only the version number, without build date. This is useful for tools built around MAME, which would use it to track capability changes for compatibility layers. Signed-off-by: Luca Bruno <lucab@debian.org>
17 lines
501 B
C
17 lines
501 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Aaron Giles
|
|
/***************************************************************************
|
|
|
|
version.c
|
|
|
|
Version string source file for MAME.
|
|
|
|
***************************************************************************/
|
|
|
|
#define BARE_BUILD_VERSION "0.156"
|
|
|
|
extern const char bare_build_version[];
|
|
extern const char build_version[];
|
|
const char bare_build_version[] = BARE_BUILD_VERSION;
|
|
const char build_version[] = BARE_BUILD_VERSION " (" __DATE__")";
|