Changeset 3190
- Timestamp:
- Jun 17, 2009, 9:51:00 PM (15 years ago)
- Location:
- code/branches/pch/src
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/core/CorePrecompiledHeaders.h
r3161 r3190 30 30 @file 31 31 @brief 32 Compilation of the most often used header files in the core library 32 Compilation of the most often used header files in the core library for MSVC 33 33 */ 34 34 35 #include <cassert> 36 #include <cmath> 37 #include <cstdlib> 38 #include <cctype> 39 #include <climits> 35 #include "CorePrereqs.h" 40 36 41 #include <string> 42 #include <sstream> 43 #include <vector> 37 #include <fstream> 44 38 #include <iostream> 45 39 #include <list> 40 #include <map> 46 41 #include <set> 47 #include <map> 48 #include <fstream> 42 #include <sstream> 43 #include <string> 44 #include <vector> 49 45 50 #include <OgreVector2.h> 51 #include <OgreVector3.h> 52 #include <OgreVector4.h> 53 #include <OgreQuaternion.h> 54 #include <OgreColourValue.h> 46 47 #ifdef ORXONOX_COMPILER_MSVC 48 49 #define WIN32_LEAN_AND_MEAN 50 #include <windows.h> 51 #undef max 52 #undef min 53 55 54 #include <ois/OISKeyboard.h> 56 55 #include <ois/OISMouse.h> 57 56 #include <ois/OISJoyStick.h> 58 57 #include <tinyxml/ticpp.h> 58 // Included by both filesystem and thread but still relatively small 59 #include <boost/iterator/iterator_facade.hpp> 59 60 60 // GCC may have problems with anonymous namespaces in certain situations 61 #if !(defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ < 420)) 62 # include "util/Convert.h" 63 # endif61 #endif /* ORXONOX_COMPILER_MSVC */ 62 63 64 #include "util/Convert.h" 64 65 #include "util/Debug.h" 65 66 #include "util/Exception.h" 66 67 #include "util/Math.h" 68 #include "util/mbool.h" 67 69 #include "util/MultiType.h" 70 #include "util/OrxAssert.h" 71 #include "util/OrxEnum.h" 68 72 #include "util/String.h" 69 73 #include "util/SubString.h" 70 74 71 // A change would trigger a 80% Core rebuild anyway 75 76 #ifdef ORXONOX_COMPILER_MSVC 77 78 // A change would trigger an 80% Core rebuild anyway 72 79 #include "Identifier.h" 80 81 #endif /*ORXONOX_COMPILER_MSVC */ -
code/branches/pch/src/network/CMakeLists.txt
r3116 r3190 42 42 DEFINE_SYMBOL 43 43 "NETWORK_SHARED_BUILD" 44 PCH_FILE 45 NetworkPrecompiledHeaders.h 44 46 LINK_LIBRARIES 45 47 ${ZLIB_LIBRARY}
Note: See TracChangeset
for help on using the changeset viewer.