dxx-rebirth/similar/main/vers_id.cpp
2014-06-01 19:55:23 +02:00

28 lines
845 B
C++

/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
#include "vers_id.h"
#ifndef DESCENT_VERSION_EXTRA
#define DESCENT_VERSION_EXTRA "v" VERSION
#endif
#if defined(DXX_BUILD_DESCENT_I)
#define DXX_NAME_NUMBER "1"
#elif defined(DXX_BUILD_DESCENT_II)
#define DXX_NAME_NUMBER "2"
#endif
const char g_descent_version[40] = "D" DXX_NAME_NUMBER "X-Rebirth " DESCENT_VERSION_EXTRA;
const char g_descent_build_datetime[21] = __DATE__ " " __TIME__;
#ifdef RECORD_BUILD_ENVIRONMENT
#define RECORD_BUILD_VARIABLE(X) extern const char g_descent_##X[]; \
const char g_descent_##X[] = #X "=" DESCENT_##X
RECORD_BUILD_ENVIRONMENT;
#endif