Changeset 7990 for code/branches/usability
- Timestamp:
- Feb 27, 2011, 5:29:19 PM (14 years ago)
- Location:
- code/branches/usability
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/usability
- Property svn:mergeinfo changed
/code/trunk (added) merged: 7952,7954-7955
- Property svn:mergeinfo changed
-
code/branches/usability/cmake/LibraryConfig.cmake
r7459 r7990 101 101 IF(POCO_REQUIRED) 102 102 FIND_PACKAGE(POCO REQUIRED) 103 # Always link against POCO too because of threading 104 SET(OGRE_LIBRARY ${OGRE_LIBRARY} ${POCO_LIBRARY}) 103 105 ENDIF() 104 106 IF(WIN32) -
code/branches/usability/src/CMakeLists.txt
r7819 r7990 33 33 ####### Library Behaviour (dependencies) ######## 34 34 35 # Disable Boost auto linking completely35 # Disable auto linking completely for Boost and POCO 36 36 ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB") 37 ADD_COMPILER_FLAGS("-DPOCO_NO_AUTOMATIC_LIBS") 37 38 38 39 # If no defines are specified, these libs get linked statically -
code/branches/usability/src/external/enet/win32.c
r7459 r7990 8 8 9 9 #include <time.h> 10 #include <ws2tcpip.h> 10 11 #define ENET_BUILDING_LIB 1 11 12 #include "enet/enet.h" -
code/branches/usability/src/external/enet/win32.h
r7459 r7990 15 15 #include <stdlib.h> 16 16 #include <winsock2.h> 17 #include <ws2tcpip.h>18 17 19 18 typedef SOCKET ENetSocket; -
code/branches/usability/src/libraries/network/NetworkPrecompiledHeaders.h
r7266 r7990 62 62 #include <cmath> // 15 63 63 64 #define WIN32_LEAN_AND_MEAN 65 #include <enet/enet.h> // 6, 3.1MB 66 64 67 #include <OgreMath.h> // 15 65 68 #include <OgreVector2.h> // 15 … … 71 74 #include "util/mbool.h" // 11 72 75 73 #define WIN32_LEAN_AND_MEAN74 #include <enet/enet.h> // 6, 3.1MB75 76 76 #endif /*ORXONOX_COMPILER_MSVC */ 77 77
Note: See TracChangeset
for help on using the changeset viewer.