1/*
2 * Copyright 2011-2013 Arx Libertatis Team (see the AUTHORS file)
3 *
4 * This file is part of Arx Libertatis.
5 *
6 * Arx Libertatis is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * Arx Libertatis is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with Arx Libertatis.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "core/Version.h"
21
22/*!
23 * This file is automatically processed by cmake if the version or commit id changes.
24 * For the exact syntax see the documentation of the configure_file() cmake command.
25 * For available variables see cmake/VersionString.cmake.
26 */
27
28#if 5 != 4 && 5 != 5
29#error "Configure error - the VERSION file should specify three or five non-empty lines!"
30#endif
31
32const std::string arx_version = "1.1.2${GIT_SUFFIX_5}";
33const std::string arx_release_codename = "Rhaa Movis Z";
34
35// TODO move this to an external file once we ship our own resources
36const std::string arx_credits = "ARX LIBERTATIS CONTRIBUTORS";
37
38const int tbg_version_id = 10;
39