1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or
5  *  (at your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful,
8  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *  GNU General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15  */
16 
17 #ifndef UQMVERSION_H
18 #define UQMVERSION_H
19 
20 #define UQM_MAJOR_VERSION     0
21 #define UQM_MAJOR_VERSION_S  "0"
22 #define UQM_MINOR_VERSION     8
23 #define UQM_MINOR_VERSION_S  "8"
24 #define UQM_PATCH_VERSION     0
25 #define UQM_PATCH_VERSION_S  "0"
26 #define UQM_EXTRA_VERSION    ""
27 /* The final version is interpreted as:
28  * printf ("%d.%d.%d%s", UQM_MAJOR_VERSION, UQM_MINOR_VERSION,
29  * 		UQM_PATCH_VERSION, UQM_EXTRA_VERSION);
30  */
31 
32 #define UQM_STRING_VERSION \
33 		UQM_MAJOR_VERSION_S "." UQM_MINOR_VERSION_S "." UQM_PATCH_VERSION_S \
34 		UQM_EXTRA_VERSION
35 
36 #endif
37