1 /* |
|
2 * LDForge: LDraw parts authoring CAD |
|
3 * Copyright (C) 2013, 2014 Santeri Piippo |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU General Public License as published by |
|
7 * the Free Software Foundation, either version 3 of the License, or |
|
8 * (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, see <http://www.gnu.org/licenses/>. |
|
17 */ |
|
18 |
|
19 //! \file Version.h |
|
20 //! Contains macros related to application name and version. |
|
21 |
|
22 #pragma once |
|
23 |
|
24 //! The application name. |
|
25 #define APPNAME "LDForge" |
|
26 |
|
27 //! The unix-style name of the application. used in filenames |
|
28 #define UNIXNAME "ldforge" |
|
29 |
|
30 //! The major version number. |
|
31 #define VERSION_MAJOR 0 |
|
32 |
|
33 //! The minor version number. |
|
34 #define VERSION_MINOR 3 |
|
35 |
|
36 //! The patch level version number. |
|
37 #define VERSION_PATCH 0 |
|
38 |
|
39 //! The build ID, use either BUILD_INTERNAL or BUILD_RELEASE |
|
40 #define BUILD_ID BUILD_INTERNAL |
|
41 |
|
42 //! The build code for internal builds |
|
43 #define BUILD_INTERNAL 0 |
|
44 |
|
45 //! The build code for release builds. |
|
46 #define BUILD_RELEASE 1 |
|
47 |
|
48 // ============================================= |
|
49 #ifdef DEBUG |
|
50 # undef RELEASE |
|
51 #endif // DEBUG |
|
52 |
|
53 #ifdef RELEASE |
|
54 # undef DEBUG |
|
55 #endif // RELEASE |
|