mame/src/version.c
Luca Bruno 8a0f5250ac version: provide a bare version-only constant
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>
2014-12-08 12:05:16 +01:00

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__")";