Changeset 64 in tspsg-svn for trunk/src/os.h
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 5 5 *.sln 6 6 *.suo 7 *.vcproj* 7 *.user 8 *.vcproj 8 9 Makefile* 9 10 debug
-
- Property svn:ignore
-
trunk/src/os.h
r56 r64 26 26 27 27 // Some target arch detection. 28 // NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32 compilers 28 /*! 29 * \def ARCH 30 * \brief The target CPU architecture TSPSG was built for. 31 * \warning NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32 compilers. 32 */ 29 33 #if defined(__amd64__) || defined(_M_X64) 30 34 #define ARCH " (AMD 64-bit)" … … 44 48 45 49 // Target OS detection. Done by Qt, so should work with any compiler. 50 /*! 51 * \def OS 52 * \brief The target operating system TSPSG was built for. 53 */ 54 /*! 55 * \def OSID 56 * \brief The target operating system ID. 57 * 58 * This value is used in task file metadata. 59 */ 46 60 #ifdef Q_OS_AIX 47 61 #define OS "AIX"ARCH
Note: See TracChangeset
for help on using the changeset viewer.