versiondefs.h
1 //------------------------------------------------------------------------------
2 // versiondefs.h
3 //------------------------------------------------------------------------------
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 // 02110-1301, USA.
19 //
20 //------------------------------------------------------------------------------
21 // Copyright (C) 2012 "Zalewa" <zalewapl@gmail.com>
22 //------------------------------------------------------------------------------
23 #ifndef DOOMSEEKER_VERSIONDEFS_H
24 #define DOOMSEEKER_VERSIONDEFS_H
25 
26 // This is a centralized location to store all version information. Make sure
27 // to update this file before making a new tag or a new release.
28 //
29 // NOTE:
30 // This file defines the version data but it SHOULD NOT be used to access this
31 // data. To prevent unnecessary recompilations of huge amount of files
32 // everytime the version changes, all information should be accessed
33 // using the class defined in 'version.h' file.
34 //
35 // This file should only by included by following files:
36 // - version.cpp
37 // - windows.rc
38 
39 #include "svnrevision.h"
40 
41 // Info used by version.cpp
42 #define VERSION_STRING "1.0"
43 
44 // Info used by windows.rc
45 #define FILEVERSION_DEF 1,0,0,SVN_REVISION_NUMBER
46 #define PRODUCTVERSION_DEF 1,0,0,SVN_REVISION_NUMBER
47 #define FILEVERSION_STR_DEF "1.0.0.0"
48 #define PRODUCTVERSION_STR_DEF "1.0.0.0"
49 #define LEGALCOPYRIGHT_DEF "The Doomseeker Team 2009 - 2015"
50 
51 #endif