]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/meshtex/PluginProperties.h
Merge commit '4645e19ce9e8f8034233ac965a4103a13b75714c' into garux-merge
[xonotic/netradiant.git] / contrib / meshtex / PluginProperties.h
1 /**
2  * @file PluginProperties.h
3  * Information about this plugin used in areas like plugin registration and
4  * generating the About dialog.
5  * @ingroup meshtex-plugin
6  */
7
8 /*
9  * Copyright 2012 Joel Baxter
10  *
11  * This file is part of MeshTex.
12  *
13  * MeshTex is free software: you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation, either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * MeshTex is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with MeshTex.  If not, see <http://www.gnu.org/licenses/>.
25  */
26
27 #if !defined(INCLUDED_PLUGINPROPERTIES_H)
28 #define INCLUDED_PLUGINPROPERTIES_H
29
30 #include "UtilityMacros.h"
31 //#include "CodeVersion.h"
32
33 #define PLUGIN_NAME "MeshTex"
34 #define PLUGIN_VERSION_MAJOR_NUMERIC 3
35 #define PLUGIN_VERSION_MINOR_NUMERIC 0
36 #define PLUGIN_VERSION STRINGIFY_MACRO(PLUGIN_VERSION_MAJOR_NUMERIC) "." STRINGIFY_MACRO(PLUGIN_VERSION_MINOR_NUMERIC) " beta" \
37             ", commit "
38 #define PLUGIN_AUTHOR "Joel Baxter"
39 #define PLUGIN_AUTHOR_EMAIL "jl@neogeographica.com"
40 #define PLUGIN_COPYRIGHT_DATE "2012"
41 #define PLUGIN_DESCRIPTION "Align and scale textures on patch meshes"
42 #define PLUGIN_FILE_BASENAME "meshtex"
43 #define PLUGIN_FILE_DESCRIPTION "patch mesh texturing plugin for GtkRadiant 1.5"
44
45 #endif // #if !defined(INCLUDED_PLUGINPROPERTIES_H)