_________ __                 __
        /   _____//  |_____________ _/  |______     ____  __ __  ______
        \_____  \\   __\_  __ \__  \\   __\__  \   / ___\|  |  \/  ___/
        /        \|  |  |  | \// __ \|  |  / __ \_/ /_/  >  |  /\___ \
       /_______  /|__|  |__|  (____  /__| (____  /\___  /|____//____  >
               \/                  \/          \//_____/            \/
    ______________________                           ______________________
                          T H E   W A R   B E G I N S
                   Stratagus - A free fantasy real time strategy game engine

version.h
Go to the documentation of this file.
1 #include "version-generated.h"
2 
4 #ifdef _WIN64
5 #define NAME "Stratagus (64 bit)"
6 #else
7 #define NAME "Stratagus"
8 #endif
9 
11 #define DESCRIPTION NAME " - Strategy Gaming Engine"
12 
13 #define _version_stringify_(s) #s
14 #define _version_stringify(s) _version_stringify_(s)
15 
16 #define _version_str1 _version_stringify(StratagusMajorVersion) "." _version_stringify(StratagusMinorVersion) "." _version_stringify(StratagusPatchLevel)
17 
18 #if StratagusPatchLevel2 > 0
19 #define _version_str2 _version_str1 "." _version_stringify(StratagusPatchLevel2)
20 #else
21 #define _version_str2 _version_str1
22 #endif
23 
25 #ifdef StratagusGitRev
26 #define VERSION _version_str2 "-git" _version_stringify(StratagusGitRev)
27 #else
28 #define VERSION _version_str2
29 #endif
30 
32 #define StratagusVersion (StratagusMajorVersion * 10000 + StratagusMinorVersion * 100 + StratagusPatchLevel)
33 
35 #define HOMEPAGE "https://github.com/Wargus/stratagus"
36 
38 #define LICENSE "GPL v2"
39 
41 #define COPYRIGHT "Copyright (c) 1998-2020 by The Stratagus Project"
version-generated.h
(C) Copyright 1998-2012 by The Stratagus Project under the GNU General Public License.
All trademarks and copyrights on this page are owned by their respective owners.