Changeset 66 in tspsg-svn for trunk/src/os.h
- Timestamp:
- Oct 21, 2009, 2:48:49 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os.h
r64 r66 25 25 #define OS_H 26 26 27 /*! 28 * \file os.h 29 * \brief This file contains TSPSG target CPU architecture and OS detection. 30 * 31 * Arch detection works only for <b>GNU C</b>, <b>Visual Studio</b>, <b>Intel C/C++</b> and <b>MinGW32</b> compilers. 32 * 33 * OS detection should work for any compiler. 34 */ 35 27 36 // Some target arch detection. 28 37 /*! 29 38 * \def ARCH 30 39 * \brief The target CPU architecture TSPSG was built for. 31 * \warning NOTE: Only for GNU C, Visual Studio, Intel C/C++ and MinGW32compilers.40 * \warning NOTE: Only for <b>GNU C</b>, <b>Visual Studio</b>, <b>Intel C/C++</b> and <b>MinGW32</b> compilers. 32 41 */ 33 42 #if defined(__amd64__) || defined(_M_X64) … … 47 56 #endif // ARCH 48 57 49 // Target OS detection. Done by Qt, so should work withany compiler.58 // Target OS detection. Done by Qt, so should work for any compiler. 50 59 /*! 51 60 * \def OS
Note: See TracChangeset
for help on using the changeset viewer.