42 lines
1.7 KiB
C
42 lines
1.7 KiB
C
/*
|
|
XINX
|
|
Copyright (C) 2007-2011 by Ulrich Van Den Hekke
|
|
xinx@shadoware.org
|
|
|
|
This program 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef _VERSION_H_
|
|
#define _VERSION_H_
|
|
|
|
#define VERSION_MAJOR 0
|
|
#define VERSION_MINOR 10
|
|
#define VERSION_RELEASE 1
|
|
#define VERSION_BUILD ${XINX_FRAMEWORK_WC_REVISION}
|
|
|
|
#define str(s) #s
|
|
#define xstr(s) str(s)
|
|
|
|
#define FILEVER VERSION_MAJOR , VERSION_MINOR , VERSION_RELEASE , VERSION_BUILD
|
|
#define PRODUCTVER VERSION_MAJOR , VERSION_MINOR , VERSION_RELEASE , VERSION_BUILD
|
|
#define STRFILEVER xstr(VERSION_MAJOR) "," xstr(VERSION_MINOR) "," xstr(VERSION_RELEASE) "," xstr(VERSION_BUILD) "\0"
|
|
#define STRPRODUCTVER xstr(VERSION_MAJOR) "," xstr(VERSION_MINOR) "," xstr(VERSION_RELEASE) "," xstr(VERSION_BUILD) "\0"
|
|
|
|
#define VERSION xstr(VERSION_MAJOR) "." xstr(VERSION_MINOR) "." xstr(VERSION_RELEASE) "." xstr(VERSION_BUILD)
|
|
#define VERSION_STRING "v" xstr(VERSION_MAJOR) "." xstr(VERSION_MINOR) "." xstr(VERSION_RELEASE)
|
|
#define LONG_VERSION_STRING "v" xstr(VERSION_MAJOR) "." xstr(VERSION_MINOR) "." xstr(VERSION_RELEASE) "." xstr(VERSION_BUILD)
|
|
|
|
#endif /* _VERSION_H_ */
|