-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPluginProperties.h
45 lines (40 loc) · 1.63 KB
/
PluginProperties.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @file PluginProperties.h
* Information about this plugin used in areas like plugin registration and
* generating the About dialog.
* @ingroup meshtex-plugin
*/
/*
* Copyright 2012 Joel Baxter
*
* This file is part of MeshTex.
*
* MeshTex is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* MeshTex 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MeshTex. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined(INCLUDED_PLUGINPROPERTIES_H)
#define INCLUDED_PLUGINPROPERTIES_H
#include "UtilityMacros.h"
#include "CodeVersion.h"
#define PLUGIN_NAME "MeshTex"
#define PLUGIN_VERSION_MAJOR_NUMERIC 3
#define PLUGIN_VERSION_MINOR_NUMERIC 0
#define PLUGIN_VERSION STRINGIFY_MACRO(PLUGIN_VERSION_MAJOR_NUMERIC) "." STRINGIFY_MACRO(PLUGIN_VERSION_MINOR_NUMERIC) " beta" \
", commit " STRINGIFY_MACRO(CODE_ID)
#define PLUGIN_AUTHOR "Joel Baxter"
#define PLUGIN_AUTHOR_EMAIL "jl@neogeographica.com"
#define PLUGIN_COPYRIGHT_DATE "2012"
#define PLUGIN_DESCRIPTION "Align and scale textures on patch meshes"
#define PLUGIN_FILE_BASENAME "meshtex"
#define PLUGIN_FILE_DESCRIPTION "patch mesh texturing plugin for GtkRadiant 1.5"
#endif // #if !defined(INCLUDED_PLUGINPROPERTIES_H)