summaryrefslogtreecommitdiff
path: root/CompilerInfo.h
blob: 5209988680f54fa092dfadaad85c4180c45e991f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** \file CompilerInfo.h
\brief Define the compiler info
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */

/// \def COMPILERINFO the string to identify the compiler
#if defined(Q_CC_GNU)
	#define COMPILERINFO QString("GCC build: ")+__DATE__+" "+__TIME__
#else
	#if defined(__DATE__) && defined(__TIME__)
		#define COMPILERINFO QString("Unknow compiler: ")+__DATE__+" "+__TIME__
	#else
		#define COMPILERINFO QString("Unknow compiler")
	#endif
#endif