2013-09-25 04:29:07 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "version.h"
|
|
|
|
#include "config.h"
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
#if defined(__ANDROID__)
|
2014-08-09 22:05:09 +02:00
|
|
|
#include "android_version.h"
|
2015-07-31 16:38:36 +02:00
|
|
|
#include "android_version_githash.h"
|
2014-08-09 22:05:09 +02:00
|
|
|
#elif defined(USE_CMAKE_CONFIG_H)
|
|
|
|
#include "cmake_config_githash.h"
|
|
|
|
#endif
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
#ifndef VERSION_GITHASH
|
2014-08-09 22:05:09 +02:00
|
|
|
#define VERSION_GITHASH VERSION_STRING
|
|
|
|
#endif
|
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
const char *g_version_string = VERSION_STRING;
|
|
|
|
const char *g_version_hash = VERSION_GITHASH;
|
|
|
|
const char *g_build_info = "VER=" VERSION_GITHASH " " BUILD_INFO;
|
2013-09-25 04:29:07 +02:00
|
|
|
|