Changeset 1024
- Timestamp:
- Apr 10, 2008, 5:35:49 PM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 28 deleted
- 46 edited
- 39 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/CMakeLists.txt
r871 r1024 6 6 ADD_SUBDIRECTORY(audio) 7 7 ADD_SUBDIRECTORY(network) 8 #ADD_SUBDIRECTORY(loader)9 8 ADD_SUBDIRECTORY(orxonox) -
code/trunk/src/audio/AudioPrereqs.h
r790 r1024 27 27 28 28 /** 29 @file AudioPrereqs.h30 @brief Contains all the necessary forward declarations for all classes, structs and enums.31 29 @file 30 @brief Contains all the necessary forward declarations for all classes and structs. 31 */ 32 32 33 33 #ifndef _AudioPrereqs_H__ -
code/trunk/src/network/NetworkPrereqs.h
r1021 r1024 27 27 28 28 /** 29 @file NetworkPrereqs.h30 @brief Contains all the necessary forward declarations for all classes, structs and enums.31 29 @file 30 @brief Contains all the necessary forward declarations for all classes and structs. 31 */ 32 32 33 33 #ifndef _NetworkPrereqs_H__ … … 84 84 struct PacketEnvelope; 85 85 struct QueueItem; 86 struct sync hData;86 struct syncData; 87 87 struct synchronisableVariable; 88 88 } -
code/trunk/src/orxonox/CMakeLists.txt
r1021 r1024 1 1 SET( ORXONOX_SRC_FILES 2 2 GraphicsEngine.cc 3 InputEventListener.cc4 InputHandler.cc5 3 Main.cc 6 4 Orxonox.cc -
code/trunk/src/orxonox/GraphicsEngine.cc
r1021 r1024 35 35 #include <OgreException.h> 36 36 #include <OgreConfigFile.h> 37 #include <OgreLogManager.h> 37 38 #include <OgreTextureManager.h> 38 39 #include <OgreRenderWindow.h> … … 62 63 GraphicsEngine::~GraphicsEngine() 63 64 { 64 if ( !this->root_)65 if (this->root_) 65 66 delete this->root_; 67 // delete the ogre log and the logManager (sine we have created it). 68 if (LogManager::getSingletonPtr() != 0) 69 { 70 LogManager::getSingleton().getDefaultLog()->removeListener(this); 71 LogManager::getSingleton().destroyLog(LogManager::getSingleton().getDefaultLog()); 72 delete LogManager::getSingletonPtr(); 73 } 66 74 } 67 75 68 76 void GraphicsEngine::setConfigValues() 69 77 { 70 SetConfigValue(dataPath_, dataPath_).description("relative path to media data"); 71 72 } 73 78 SetConfigValue(dataPath_, "../../media/").description("relative path to media data"); 79 SetConfigValue(ogreLogfile_, "ogre.log").description("Logfile for messages from Ogre. Use \"\" to suppress log file creation."); 80 SetConfigValue(ogreLogLevelTrivial_ , 5).description("relative path to media data"); 81 SetConfigValue(ogreLogLevelNormal_ , 4).description("relative path to media data"); 82 SetConfigValue(ogreLogLevelCritical_, 2).description("relative path to media data"); 83 } 84 85 /** 86 @brief Creates the Ogre Root object and sets up the ogre log. 87 */ 74 88 void GraphicsEngine::setup() 75 89 { … … 86 100 std::string plugin_filename = "plugins.cfg"; 87 101 #endif 102 103 // create a logManager 104 LogManager *logger; 105 if(LogManager::getSingletonPtr() == 0) 106 logger = new LogManager(); 107 else 108 logger = LogManager::getSingletonPtr(); 109 110 // create our own log that we can listen to 111 Log *myLog; 112 if (this->ogreLogfile_ == "") 113 myLog = logger->createLog("ogre.log", true, false, true); 114 else 115 myLog = logger->createLog(this->ogreLogfile_, true, false, false); 116 117 myLog->setLogDetail(LL_BOREME); 118 myLog->addListener(this); 119 120 // Root will detect that we've already created a Log 88 121 root_ = new Root(plugin_filename); 89 122 } … … 106 139 // temporary overwrite of dataPath, change ini file for permanent change 107 140 if( dataPath != "" ) 108 dataPath_ = dataPath ;141 dataPath_ = dataPath + "/"; 109 142 loadRessourceLocations(this->dataPath_); 110 143 if (!root_->restoreConfig() && !root_->showConfigDialog()) … … 196 229 } 197 230 231 /** 232 @brief Method called by the LogListener interface from Ogre. 233 We use it to capture Ogre log messages and handle it ourselves. 234 @param message The message to be logged 235 @param lml The message level the log is using 236 @param maskDebug If we are printing to the console or not 237 @param logName the name of this log (so you can have several listeners 238 for different logs, and identify them) 239 */ 240 void GraphicsEngine::messageLogged(const std::string& message, 241 LogMessageLevel lml, bool maskDebug, const std::string &logName) 242 { 243 int orxonoxLevel; 244 switch (lml) 245 { 246 case LML_TRIVIAL: 247 orxonoxLevel = this->ogreLogLevelTrivial_; 248 break; 249 case LML_NORMAL: 250 orxonoxLevel = this->ogreLogLevelNormal_; 251 break; 252 case LML_CRITICAL: 253 orxonoxLevel = this->ogreLogLevelCritical_; 254 break; 255 default: 256 orxonoxLevel = 0; 257 } 258 OutputHandler::getOutStream().setOutputLevel(orxonoxLevel) 259 << "*** Ogre: " << message << std::endl; 260 } 198 261 } -
code/trunk/src/orxonox/GraphicsEngine.h
r1021 r1024 11 11 12 12 #include <OgrePrerequisites.h> 13 #include <OgreLog.h> 13 14 #include <OgreRoot.h> 14 15 #include <OgreSceneManager.h> … … 23 24 * graphics engine manager class 24 25 */ 25 class _OrxonoxExport GraphicsEngine : public OrxonoxClass 26 class _OrxonoxExport GraphicsEngine : public OrxonoxClass, public Ogre::LogListener 26 27 { 27 28 public: 28 29 GraphicsEngine(); 29 inlinevoid setConfigPath(std::string path) { this->configPath_ = path; };30 void setConfigPath(std::string path) { this->configPath_ = path; }; 30 31 // find a better way for this 31 32 //inline Ogre::Root* getRoot() { return root_; }; … … 54 55 55 56 private: 57 //! Method called by the LogListener from Ogre 58 void messageLogged(const std::string& message, Ogre::LogMessageLevel lml, 59 bool maskDebug, const std::string &logName); 60 56 61 Ogre::Root* root_; //!< Ogre's root 57 62 std::string configPath_; //!< path to config file … … 60 65 Ogre::RenderWindow* renderWindow_;//!< the current render window 61 66 //bool bOverwritePath_; //!< overwrites path 67 std::string ogreLogfile_; //!< log file name for Ogre log messages 68 int ogreLogLevelTrivial_; //!< Corresponding Orxonx debug level for LL_TRIVIAL 69 int ogreLogLevelNormal_; //!< Corresponding Orxonx debug level for LL_NORMAL 70 int ogreLogLevelCritical_; //!< Corresponding Orxonx debug level for LL_CRITICAL 62 71 63 72 }; -
code/trunk/src/orxonox/Main.cc
r1021 r1024 84 84 85 85 orx->start(); 86 orx->destroy ();86 orx->destroySingleton(); 87 87 } 88 88 catch (std::exception &ex) -
code/trunk/src/orxonox/Orxonox.cc
r1021 r1024 50 50 //misc 51 51 //#include "util/Sleep.h" 52 #include "util/ArgReader.h" 52 53 53 54 // audio … … 61 62 62 63 // objects 63 #include "core/ArgReader.h"64 64 #include "core/Debug.h" 65 65 #include "core/Factory.h" … … 70 70 #include "objects/weapon/BulletManager.h" 71 71 72 #include " InputHandler.h"72 #include "core/InputManager.h" 73 73 74 74 #include "Orxonox.h" … … 108 108 delete this->orxonoxHUD_; 109 109 Loader::close(); 110 Input Handler::destroy();110 InputManager::destroySingleton(); 111 111 if (this->auMan_) 112 112 delete this->auMan_; … … 147 147 singletonRef_s = new Orxonox(); 148 148 return singletonRef_s; 149 //static Orxonox theOnlyInstance;150 //return &theOnlyInstance;151 149 } 152 150 … … 154 152 @brief Destroys the Orxonox singleton. 155 153 */ 156 void Orxonox::destroy ()154 void Orxonox::destroySingleton() 157 155 { 158 156 if (singletonRef_s) … … 174 172 std::string mode; 175 173 176 ArgReader ar = ArgReader(argc, argv);174 ArgReader ar(argc, argv); 177 175 ar.checkArgument("mode", mode, false); 178 176 ar.checkArgument("data", this->dataPath_, false); … … 327 325 void Orxonox::setupInputSystem() 328 326 { 329 inputHandler_ = Input Handler::getSingleton();327 inputHandler_ = InputManager::getSingleton(); 330 328 if (!inputHandler_->initialise(ogre_->getWindowHandle(), 331 329 ogre_->getWindowWidth(), ogre_->getWindowHeight())) 332 330 abortImmediate(); 331 inputHandler_->setInputMode(IM_INGAME); 333 332 } 334 333 -
code/trunk/src/orxonox/Orxonox.h
r1021 r1024 17 17 18 18 #include "GraphicsEngine.h" 19 #include " InputEventListener.h"19 #include "core/InputEventListener.h" 20 20 21 21 … … 44 44 45 45 static Orxonox* getSingleton(); 46 static void destroy ();46 static void destroySingleton(); 47 47 48 48 private: … … 75 75 audio::AudioManager* auMan_; //!< audio manager 76 76 BulletManager* bulletMgr_; //!< Keeps track of the thrown bullets 77 Input Handler* inputHandler_; //!< Handles input with key bindings77 InputManager* inputHandler_; //!< Handles input with key bindings 78 78 Ogre::Root* root_; //!< Holy grail of Ogre 79 79 Ogre::Timer* timer_; //!< Main loop timer -
code/trunk/src/orxonox/OrxonoxPlatform.h
r1021 r1024 190 190 191 191 // Integer formats of fixed bit width 192 typedef unsigned int uint32; 192 // FIXME: consider 64 bit platforms! 193 /*typedef unsigned int uint32; 193 194 typedef unsigned short uint16; 194 typedef unsigned char uint8; 195 typedef unsigned char uint8;*/ 195 196 196 197 #ifdef ORXONOX_DOUBLE_PRECISION … … 232 233 // disable: 'MultiTypeString' : multiple assignment operators specified 233 234 // Used in MultiType and works fine so far 234 # pragma warning (disable : 4522)235 //# pragma warning (disable : 4522) 235 236 236 237 // disable: "non dll-interface class used as base for dll-interface class" … … 270 271 } /* namespace orxonox */ 271 272 273 // include visual leak detector to search for memory links 274 //#include <vld.h> 275 272 276 #endif /* _OrxonoxPlatform_H__ */ -
code/trunk/src/orxonox/OrxonoxPrereqs.h
r1021 r1024 27 27 28 28 /** 29 @file OrxonoxPrereqs.h30 @brief Contains all the necessary forward declarations for all classes and structs.31 29 @file 30 @brief Contains all the necessary forward declarations for all classes and structs. 31 */ 32 32 33 33 #ifndef _OrxonoxPrereqs_H__ … … 59 59 //----------------------------------------------------------------------- 60 60 61 // classes that have not yet been put into a namespace 62 class InputManager;63 class SpaceShipSteering;61 namespace orxonox { 62 class GraphicsEngine; 63 class Orxonox; 64 64 65 namespace orxonox { 65 // objects 66 66 class Ambient; 67 class BaseObject;68 67 class Camera; 69 class GraphicsEngine; 70 struct InputEvent; 71 class InputEventListener; 72 class InputHandler; 73 class Mesh; 68 class Explosion; 69 class Fighter; 74 70 class Model; 75 71 class NPC; 76 class OrxListener; 77 class Orxonox; 72 class Projectile; 78 73 class Skybox; 79 74 class SpaceShip; 80 class Tickable;81 class TickFrameListener;82 template <class T>83 class Timer;84 class TimerBase;85 class TimerFrameListener;86 75 class WorldEntity; 87 76 … … 93 82 class WeaponStation; 94 83 84 // tools 85 class BillboardSet; 86 class Light; 87 class Mesh; 88 template <class T> 89 class Timer; 90 class TimerBase; 91 92 // particle 95 93 class ParticleInterface; 94 95 // hud 96 96 class HUD; 97 97 } -
code/trunk/src/orxonox/OrxonoxStableHeaders.h
r1021 r1024 40 40 // including std headers here is useless since they're already precompiled 41 41 42 // not including the entire Ogre.h doesn't exceed the default heap size for pch43 42 #ifndef WIN32_LEAN_AND_MEAN 44 43 // prevent Ogre from including winsock.h that messes with winsock2.h from enet 45 44 # define WIN32_LEAN_AND_MEAN 46 45 #endif 46 // not including the entire Ogre.h doesn't exceed the default heap size for pch 47 47 //#include <Ogre.h> 48 48 #include <OgreBillboardSet.h> -
code/trunk/src/orxonox/core/CMakeLists.txt
r1021 r1024 5 5 Identifier.cc 6 6 IdentifierDistributor.cc 7 InputHandler.cc 8 InputManager.cc 7 9 MetaObjectList.cc 8 10 ConfigValueContainer.cc 9 11 Error.cc 10 12 SignalHandler.cc 11 ArgReader.cc12 13 DebugLevel.cc 13 14 OutputHandler.cc -
code/trunk/src/orxonox/core/CorePrereqs.h
r871 r1024 27 27 28 28 /** 29 @file CorePrereq.h30 @brief Contains all the necessary forward declarations for all classes, structs and enums.29 @file 30 @brief Contains all the necessary forward declarations for all classes and structs. 31 31 */ 32 32 … … 36 36 #include <string> 37 37 38 #include " orxonox/OrxonoxPlatform.h"38 #include "OrxonoxPlatform.h" 39 39 40 40 //----------------------------------------------------------------------- … … 67 67 typedef std::string LanguageEntryLabel; 68 68 69 class ArgReader;70 69 class BaseFactory; 71 70 class BaseMetaObjectListElement; 71 class BaseObject; 72 72 template <class T> 73 73 class ClassFactory; … … 86 86 class Identifier; 87 87 class IdentifierDistributor; 88 class InputHandlerGame; 89 class InputHandlerGUI; 90 class InputManager; 88 91 template <class T> 89 92 class Iterator; … … 103 106 template <class T> 104 107 class SubclassIdentifier; 108 class Tickable; 105 109 template <class T, class O> 106 110 class XMLPortClassObjectContainer; -
code/trunk/src/orxonox/core/Factory.h
r871 r1024 51 51 namespace orxonox 52 52 { 53 class BaseObject; // Forward declaration54 55 53 // ############################### 56 54 // ### Factory ### -
code/trunk/src/orxonox/core/Identifier.h
r890 r1024 33 33 - the name 34 34 - a list with all objects 35 - parents and child s35 - parents and children 36 36 - the factory (if available) 37 37 - the networkID that can be synchronised with the server … … 65 65 namespace orxonox 66 66 { 67 class BaseFactory; // Forward declaration68 class BaseObject; // Forward declaration69 70 67 // ############################### 71 68 // ### Identifier ### -
code/trunk/src/orxonox/core/MetaObjectList.h
r871 r1024 113 113 This allows much faster deletion of objects because no iteration is needed. 114 114 */ 115 class MetaObjectList115 class _CoreExport MetaObjectList 116 116 { 117 117 public: -
code/trunk/src/orxonox/core/Script.cc
r1021 r1024 38 38 } 39 39 40 #include " tolua++.h"41 #include " ../../util/tolua/tolua_bind.h"40 #include "util/tolua/tolua++.h" 41 #include "util/tolua/tolua_bind.h" 42 42 43 43 namespace orxonox … … 57 57 { 58 58 output_ += str; 59 COUT( 0) << "Lua_output!:" << std::endl << str << std::endl << "***" << std::endl;59 COUT(4) << "Lua_output!:" << std::endl << str << std::endl << "***" << std::endl; 60 60 } 61 61 … … 89 89 90 90 if (luaTags) luaSource_ = replaceLuaTags(levelString); 91 COUT( 0) << "ParsedSourceCode: " << luaSource_ << std::endl;91 COUT(4) << "ParsedSourceCode: " << luaSource_ << std::endl; 92 92 } 93 93 … … 100 100 if (error == 0) 101 101 error = lua_pcall(luaState_, 0, 0, 0); 102 if (error != 0) COUT( 0) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl;102 if (error != 0) COUT(2) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl; 103 103 } 104 104 -
code/trunk/src/orxonox/core/Tickable.h
r1021 r1024 46 46 namespace orxonox 47 47 { 48 //class TickFrameListener; // Forward declaration49 50 48 //! The Tickable interface provides a tick(dt) function, that gets called every frame. 51 49 class _CoreExport Tickable : virtual public OrxonoxClass -
code/trunk/src/orxonox/objects/Fighter.cc
r1021 r1024 39 39 #include "core/CoreIncludes.h" 40 40 #include "Orxonox.h" 41 #include " InputHandler.h"41 #include "core/InputManager.h" 42 42 #include "particle/ParticleInterface.h" 43 43 #include "weapon/AmmunitionDump.h" … … 255 255 if (!this->setMouseEventCallback_) 256 256 { 257 if (Input Handler::getSingleton()->getMouse())257 if (InputManager::getSingleton()->getMouse()) 258 258 { 259 Input Handler::getSingleton()->getMouse()->setEventCallback(this);259 InputManager::getSingleton()->getMouse()->setEventCallback(this); 260 260 this->setMouseEventCallback_ = true; 261 261 } … … 264 264 WorldEntity::tick(dt); 265 265 266 OIS::Keyboard* mKeyboard = Input Handler::getSingleton()->getKeyboard();267 OIS::Mouse* mMouse = Input Handler::getSingleton()->getMouse();268 269 mKeyboard->capture();270 mMouse->capture();266 OIS::Keyboard* mKeyboard = InputManager::getSingleton()->getKeyboard(); 267 OIS::Mouse* mMouse = InputManager::getSingleton()->getMouse(); 268 269 //mKeyboard->capture(); 270 //mMouse->capture(); 271 271 272 272 if (leftButtonPressed_) -
code/trunk/src/orxonox/objects/Fighter.h
r871 r1024 7 7 8 8 #include "Model.h" 9 10 class TiXmlElement; // Forward declaration11 9 12 10 namespace orxonox -
code/trunk/src/orxonox/objects/Model.h
r1021 r1024 6 6 #include "WorldEntity.h" 7 7 #include "../tools/Mesh.h" 8 9 class TiXmlElement; // Forward declaration10 8 11 9 namespace orxonox -
code/trunk/src/orxonox/objects/NPC.h
r871 r1024 11 11 12 12 #include "Model.h" 13 14 class TiXmlElement; // Forward declaration15 13 16 14 namespace orxonox { -
code/trunk/src/orxonox/objects/Projectile.h
r871 r1024 10 10 namespace orxonox 11 11 { 12 class SpaceShip; // Forward declaration13 14 12 class _OrxonoxExport Projectile : public WorldEntity 15 13 { -
code/trunk/src/orxonox/objects/Skybox.h
r871 r1024 5 5 6 6 #include "core/BaseObject.h" 7 8 class TiXmlElement; // Forward declaration9 7 10 8 namespace orxonox -
code/trunk/src/orxonox/objects/SpaceShip.cc
r1021 r1024 42 42 #include "core/Debug.h" 43 43 #include "Orxonox.h" 44 #include " InputHandler.h"44 #include "core/InputManager.h" 45 45 #include "particle/ParticleInterface.h" 46 46 #include "Projectile.h" … … 417 417 void SpaceShip::tick(float dt) 418 418 { 419 if (!this->setMouseEventCallback_)420 { 421 if (Input Handler::getSingleton()->getMouse())419 if (InputManager::getSingleton()->getMouse()->getEventCallback() != this) 420 { 421 if (InputManager::getSingleton()->getMouse()) 422 422 { 423 Input Handler::getSingleton()->getMouse()->setEventCallback(this);423 InputManager::getSingleton()->getMouse()->setEventCallback(this); 424 424 this->setMouseEventCallback_ = true; 425 425 } … … 446 446 } 447 447 448 OIS::Keyboard* mKeyboard = InputHandler::getSingleton()->getKeyboard(); 449 OIS::Mouse* mMouse = InputHandler::getSingleton()->getMouse(); 450 451 mKeyboard->capture(); 452 mMouse->capture(); 448 OIS::Keyboard* mKeyboard = InputManager::getSingleton()->getKeyboard(); 449 OIS::Mouse* mMouse = InputManager::getSingleton()->getMouse(); 453 450 454 451 -
code/trunk/src/orxonox/objects/SpaceShip.h
r1021 r1024 10 10 #include "../tools/BillboardSet.h" 11 11 12 class TiXmlElement; // Forward declaration13 14 12 namespace orxonox 15 13 { 16 class ParticleInterface; // Forward declaration17 18 14 class _OrxonoxExport SpaceShip : public Model, public OIS::MouseListener 19 15 { -
code/trunk/src/util/CMakeLists.txt
r1021 r1024 5 5 6 6 SET (UTIL_SRC_FILES 7 ArgReader.cc 7 8 Math.cc 8 9 String.cc -
code/trunk/src/util/UtilPrereqs.h
r871 r1024 27 27 28 28 /** 29 @file UtilPrereq.h30 @brief Contains all the necessary forward declarations for all classes, structs and enums.31 29 @file 30 @brief Contains all the necessary forward declarations for all classes and structs. 31 */ 32 32 33 33 #ifndef _UtilPrereqs_H__ … … 59 59 // Forward declarations 60 60 //----------------------------------------------------------------------- 61 class ArgReader; 61 62 class Convert; 62 63 template <typename FromType, typename ToType> -
code/trunk/visual_studio/audio_properties.vsprops
r790 r1024 9 9 Name="VCCLCompilerTool" 10 10 PreprocessorDefinitions="AUDIO_SHARED_BUILD" 11 DisableSpecificWarnings="4244" 11 12 /> 12 13 <Tool -
code/trunk/visual_studio/base_properties.vsprops
r1021 r1024 9 9 Name="VCCLCompilerTool" 10 10 AdditionalIncludeDirectories=""$(RootDir)src";"$(RootDir)src\orxonox";"$(DependencyDir)include"" 11 PreprocessorDefinitions="WIN32;__WIN32__;_WIN32;BOOST_ALL_DYN_LINK "11 PreprocessorDefinitions="WIN32;__WIN32__;_WIN32;BOOST_ALL_DYN_LINK;OIS_DYNAMIC_LIB; ZLIB_WINAPI" 12 12 WarningLevel="3" 13 DisableSpecificWarnings="4 244;4251"13 DisableSpecificWarnings="4522;4251" 14 14 /> 15 15 <Tool … … 23 23 OutputFile="$(OutDir)$(ProjectName)$(CS).dll" 24 24 AdditionalLibraryDirectories="$(DependencyDir)lib" 25 SubSystem=" 2"25 SubSystem="1" 26 26 ImportLibrary="$(LibOutDir)$(TargetName).lib" 27 27 TargetMachine="1" … … 33 33 <UserMacro 34 34 Name="DependencyDir" 35 Value=" D:\orxonox\dependencies\orxonox\"35 Value="$(RootDir)..\dependencies\" 36 36 /> 37 37 <UserMacro … … 41 41 <UserMacro 42 42 Name="CSS" 43 Value=" $(CS)"43 Value="" 44 44 /> 45 45 </VisualStudioPropertySheet> -
code/trunk/visual_studio/base_properties_debug.vsprops
r790 r1024 26 26 <UserMacro 27 27 Name="CSS" 28 Value=" $(CS)"28 Value="_d" 29 29 /> 30 30 </VisualStudioPropertySheet> -
code/trunk/visual_studio/base_properties_release.vsprops
r790 r1024 12 12 PreprocessorDefinitions="NDEBUG" 13 13 RuntimeLibrary="2" 14 DebugInformationFormat=" 0"14 DebugInformationFormat="3" 15 15 /> 16 16 <Tool … … 27 27 <UserMacro 28 28 Name="CSS" 29 Value=" $(CS)"29 Value="" 30 30 /> 31 31 </VisualStudioPropertySheet> -
code/trunk/visual_studio/base_properties_release_sse.vsprops
r790 r1024 1 <?xml version="1.0" encoding="Windows-1252"?>2 <VisualStudioPropertySheet3 ProjectType="Visual C++"4 Version="8.00"5 Name="base_properties_release_sse"6 InheritedPropertySheets=".\base_properties_release.vsprops"7 >8 <Tool9 Name="VCCLCompilerTool"10 PreprocessorDefinitions="NDEBUG"11 EnableEnhancedInstructionSet="1"12 />13 <UserMacro14 Name="CS"15 Value="_sse"16 />17 <UserMacro18 Name="CSS"19 Value=""20 />21 </VisualStudioPropertySheet> -
code/trunk/visual_studio/base_properties_release_sse2.vsprops
r790 r1024 1 <?xml version="1.0" encoding="Windows-1252"?>2 <VisualStudioPropertySheet3 ProjectType="Visual C++"4 Version="8.00"5 Name="base_properties_release_sse2"6 InheritedPropertySheets=".\base_properties_release.vsprops"7 >8 <Tool9 Name="VCCLCompilerTool"10 EnableEnhancedInstructionSet="2"11 />12 <UserMacro13 Name="CS"14 Value="_sse2"15 />16 <UserMacro17 Name="CSS"18 Value=""19 />20 </VisualStudioPropertySheet> -
code/trunk/visual_studio/core_properties.vsprops
r790 r1024 12 12 <Tool 13 13 Name="VCLinkerTool" 14 AdditionalDependencies="OgreMain$(CS).lib "14 AdditionalDependencies="OgreMain$(CS).lib OIS$(CSS).lib lua$(CS).lib" 15 15 /> 16 16 </VisualStudioPropertySheet> -
code/trunk/visual_studio/network_properties.vsprops
r1021 r1024 8 8 <Tool 9 9 Name="VCCLCompilerTool" 10 PreprocessorDefinitions="NETWORK_SHARED_BUILD; ZLIB_WINAPI;WIN32_LEAN_AND_MEAN"10 PreprocessorDefinitions="NETWORK_SHARED_BUILD;WIN32_LEAN_AND_MEAN" 11 11 /> 12 12 <Tool -
code/trunk/visual_studio/orxonox_properties.vsprops
r790 r1024 8 8 <Tool 9 9 Name="VCCLCompilerTool" 10 PreprocessorDefinitions="ORXONOX_SHARED_BUILD ; LOADER_STATIC_BUILD"10 PreprocessorDefinitions="ORXONOX_SHARED_BUILD" 11 11 UsePrecompiledHeader="2" 12 12 PrecompiledHeaderThrough="OrxonoxStableHeaders.h" -
code/trunk/visual_studio/orxonox_vc8.sln
r1021 r1024 7 7 EndProjectSection 8 8 ProjectSection(ProjectDependencies) = postProject 9 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 9 10 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86} 10 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}11 11 EndProjectSection 12 12 EndProject … … 17 17 EndProjectSection 18 18 ProjectSection(ProjectDependencies) = postProject 19 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} = {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626} 19 20 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 20 21 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F} … … 27 28 EndProjectSection 28 29 ProjectSection(ProjectDependencies) = postProject 30 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 29 31 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86} 30 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}31 32 EndProjectSection 32 33 EndProject … … 37 38 EndProjectSection 38 39 ProjectSection(ProjectDependencies) = postProject 40 {4733BD1A-E04C-458D-8BFB-5010250EA497} = {4733BD1A-E04C-458D-8BFB-5010250EA497} 41 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F} 42 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86} 43 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC} 39 44 {35575B59-E1AE-40E8-89C4-2862B5B09B68} = {35575B59-E1AE-40E8-89C4-2862B5B09B68} 40 {2240ECD7-2F48-4431-8E1B-25466A384CCC} = {2240ECD7-2F48-4431-8E1B-25466A384CCC}41 {271715F3-5B90-4110-A552-70C788084A86} = {271715F3-5B90-4110-A552-70C788084A86}42 {F101C2F0-1CB9-4A57-827B-6C399A99B28F} = {F101C2F0-1CB9-4A57-827B-6C399A99B28F}43 {4733BD1A-E04C-458D-8BFB-5010250EA497} = {4733BD1A-E04C-458D-8BFB-5010250EA497}44 45 EndProjectSection 45 46 EndProject … … 56 57 EndProjectSection 57 58 EndProject 59 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tolua++", "vc8\tolua++.vcproj", "{35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}" 60 ProjectSection(WebsiteProperties) = preProject 61 Debug.AspNetCompiler.Debug = "True" 62 Release.AspNetCompiler.Debug = "False" 63 EndProjectSection 64 EndProject 58 65 Global 59 66 GlobalSection(SolutionConfigurationPlatforms) = preSolution 60 67 Debug|Win32 = Debug|Win32 61 Release_SSE|Win32 = Release_SSE|Win3262 Release_SSE2|Win32 = Release_SSE2|Win3263 68 Release|Win32 = Release|Win32 64 69 EndGlobalSection … … 66 71 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Debug|Win32.ActiveCfg = Debug|Win32 67 72 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Debug|Win32.Build.0 = Debug|Win32 68 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win3269 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE|Win32.Build.0 = Release_SSE|Win3270 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win3271 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win3272 73 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release|Win32.ActiveCfg = Release|Win32 73 74 {4733BD1A-E04C-458D-8BFB-5010250EA497}.Release|Win32.Build.0 = Release|Win32 74 75 {271715F3-5B90-4110-A552-70C788084A86}.Debug|Win32.ActiveCfg = Debug|Win32 75 76 {271715F3-5B90-4110-A552-70C788084A86}.Debug|Win32.Build.0 = Debug|Win32 76 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win3277 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE|Win32.Build.0 = Release_SSE|Win3278 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win3279 {271715F3-5B90-4110-A552-70C788084A86}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win3280 77 {271715F3-5B90-4110-A552-70C788084A86}.Release|Win32.ActiveCfg = Release|Win32 81 78 {271715F3-5B90-4110-A552-70C788084A86}.Release|Win32.Build.0 = Release|Win32 82 79 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Debug|Win32.ActiveCfg = Debug|Win32 83 80 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Debug|Win32.Build.0 = Debug|Win32 84 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win3285 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE|Win32.Build.0 = Release_SSE|Win3286 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win3287 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win3288 81 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release|Win32.ActiveCfg = Release|Win32 89 82 {35575B59-E1AE-40E8-89C4-2862B5B09B68}.Release|Win32.Build.0 = Release|Win32 90 83 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Debug|Win32.ActiveCfg = Debug|Win32 91 84 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Debug|Win32.Build.0 = Debug|Win32 92 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win3293 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE|Win32.Build.0 = Release_SSE|Win3294 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win3295 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win3296 85 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release|Win32.ActiveCfg = Release|Win32 97 86 {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release|Win32.Build.0 = Release|Win32 98 87 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Debug|Win32.ActiveCfg = Debug|Win32 99 88 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Debug|Win32.Build.0 = Debug|Win32 100 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32101 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE|Win32.Build.0 = Release_SSE|Win32102 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32103 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32104 89 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release|Win32.ActiveCfg = Release|Win32 105 90 {2240ECD7-2F48-4431-8E1B-25466A384CCC}.Release|Win32.Build.0 = Release|Win32 106 91 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Debug|Win32.ActiveCfg = Debug|Win32 107 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Debug|Win32.Build.0 = Debug|Win32108 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE|Win32.ActiveCfg = Release_SSE|Win32109 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE|Win32.Build.0 = Release_SSE|Win32110 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE2|Win32.ActiveCfg = Release_SSE2|Win32111 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release_SSE2|Win32.Build.0 = Release_SSE2|Win32112 92 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release|Win32.ActiveCfg = Release|Win32 113 {F101C2F0-1CB9-4A57-827B-6C399A99B28F}.Release|Win32.Build.0 = Release|Win32 93 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}.Debug|Win32.ActiveCfg = Debug|Win32 94 {35E36A06-0A5C-4A0D-9AB6-5A05EAA87626}.Release|Win32.ActiveCfg = Release|Win32 114 95 EndGlobalSection 115 96 GlobalSection(SolutionProperties) = preSolution -
code/trunk/visual_studio/tixml_properties.vsprops
r890 r1024 3 3 ProjectType="Visual C++" 4 4 Version="8.00" 5 Name=" util_properties"5 Name="tixml_properties" 6 6 InheritedPropertySheets=".\directory_properties.vsprops" 7 7 > 8 <Tool9 Name="VCCLCompilerTool"10 PreprocessorDefinitions="UTIL_SHARED_BUILD"11 />12 <Tool13 Name="VCLinkerTool"14 AdditionalDependencies="OgreMain$(CS).lib"15 />16 8 </VisualStudioPropertySheet> -
code/trunk/visual_studio/vc8/audio.vcproj
r790 r1024 139 139 /> 140 140 </Configuration> 141 <Configuration142 Name="Release_SSE|Win32"143 ConfigurationType="2"144 InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\audio_properties.vsprops"145 CharacterSet="1"146 WholeProgramOptimization="1"147 >148 <Tool149 Name="VCPreBuildEventTool"150 />151 <Tool152 Name="VCCustomBuildTool"153 />154 <Tool155 Name="VCXMLDataGeneratorTool"156 />157 <Tool158 Name="VCWebServiceProxyGeneratorTool"159 />160 <Tool161 Name="VCMIDLTool"162 />163 <Tool164 Name="VCCLCompilerTool"165 />166 <Tool167 Name="VCManagedResourceCompilerTool"168 />169 <Tool170 Name="VCResourceCompilerTool"171 />172 <Tool173 Name="VCPreLinkEventTool"174 />175 <Tool176 Name="VCLinkerTool"177 />178 <Tool179 Name="VCALinkTool"180 />181 <Tool182 Name="VCManifestTool"183 />184 <Tool185 Name="VCXDCMakeTool"186 />187 <Tool188 Name="VCBscMakeTool"189 />190 <Tool191 Name="VCFxCopTool"192 />193 <Tool194 Name="VCAppVerifierTool"195 />196 <Tool197 Name="VCWebDeploymentTool"198 />199 <Tool200 Name="VCPostBuildEventTool"201 />202 </Configuration>203 <Configuration204 Name="Release_SSE2|Win32"205 ConfigurationType="2"206 InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\audio_properties.vsprops"207 CharacterSet="1"208 WholeProgramOptimization="1"209 >210 <Tool211 Name="VCPreBuildEventTool"212 />213 <Tool214 Name="VCCustomBuildTool"215 />216 <Tool217 Name="VCXMLDataGeneratorTool"218 />219 <Tool220 Name="VCWebServiceProxyGeneratorTool"221 />222 <Tool223 Name="VCMIDLTool"224 />225 <Tool226 Name="VCCLCompilerTool"227 />228 <Tool229 Name="VCManagedResourceCompilerTool"230 />231 <Tool232 Name="VCResourceCompilerTool"233 />234 <Tool235 Name="VCPreLinkEventTool"236 />237 <Tool238 Name="VCLinkerTool"239 />240 <Tool241 Name="VCALinkTool"242 />243 <Tool244 Name="VCManifestTool"245 />246 <Tool247 Name="VCXDCMakeTool"248 />249 <Tool250 Name="VCBscMakeTool"251 />252 <Tool253 Name="VCFxCopTool"254 />255 <Tool256 Name="VCAppVerifierTool"257 />258 <Tool259 Name="VCWebDeploymentTool"260 />261 <Tool262 Name="VCPostBuildEventTool"263 />264 </Configuration>265 141 </Configurations> 266 142 <References> … … 273 149 > 274 150 <File 275 RelativePath="..\..\src\audio\_AudioObject.cc"276 >277 <FileConfiguration278 Name="Debug|Win32"279 ExcludedFromBuild="true"280 >281 <Tool282 Name="VCCLCompilerTool"283 />284 </FileConfiguration>285 <FileConfiguration286 Name="Release|Win32"287 ExcludedFromBuild="true"288 >289 <Tool290 Name="VCCLCompilerTool"291 />292 </FileConfiguration>293 <FileConfiguration294 Name="Release_SSE|Win32"295 ExcludedFromBuild="true"296 >297 <Tool298 Name="VCCLCompilerTool"299 />300 </FileConfiguration>301 <FileConfiguration302 Name="Release_SSE2|Win32"303 ExcludedFromBuild="true"304 >305 <Tool306 Name="VCCLCompilerTool"307 />308 </FileConfiguration>309 </File>310 <File311 151 RelativePath="..\..\src\audio\AudioBuffer.cc" 312 152 > -
code/trunk/visual_studio/vc8/core.vcproj
r1021 r1024 139 139 /> 140 140 </Configuration> 141 <Configuration142 Name="Release_SSE|Win32"143 ConfigurationType="2"144 InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\core_properties.vsprops"145 CharacterSet="1"146 WholeProgramOptimization="1"147 >148 <Tool149 Name="VCPreBuildEventTool"150 />151 <Tool152 Name="VCCustomBuildTool"153 />154 <Tool155 Name="VCXMLDataGeneratorTool"156 />157 <Tool158 Name="VCWebServiceProxyGeneratorTool"159 />160 <Tool161 Name="VCMIDLTool"162 />163 <Tool164 Name="VCCLCompilerTool"165 />166 <Tool167 Name="VCManagedResourceCompilerTool"168 />169 <Tool170 Name="VCResourceCompilerTool"171 />172 <Tool173 Name="VCPreLinkEventTool"174 />175 <Tool176 Name="VCLinkerTool"177 />178 <Tool179 Name="VCALinkTool"180 />181 <Tool182 Name="VCManifestTool"183 />184 <Tool185 Name="VCXDCMakeTool"186 />187 <Tool188 Name="VCBscMakeTool"189 />190 <Tool191 Name="VCFxCopTool"192 />193 <Tool194 Name="VCAppVerifierTool"195 />196 <Tool197 Name="VCWebDeploymentTool"198 />199 <Tool200 Name="VCPostBuildEventTool"201 />202 </Configuration>203 <Configuration204 Name="Release_SSE2|Win32"205 ConfigurationType="2"206 InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\core_properties.vsprops"207 CharacterSet="1"208 WholeProgramOptimization="1"209 >210 <Tool211 Name="VCPreBuildEventTool"212 />213 <Tool214 Name="VCCustomBuildTool"215 />216 <Tool217 Name="VCXMLDataGeneratorTool"218 />219 <Tool220 Name="VCWebServiceProxyGeneratorTool"221 />222 <Tool223 Name="VCMIDLTool"224 />225 <Tool226 Name="VCCLCompilerTool"227 />228 <Tool229 Name="VCManagedResourceCompilerTool"230 />231 <Tool232 Name="VCResourceCompilerTool"233 />234 <Tool235 Name="VCPreLinkEventTool"236 />237 <Tool238 Name="VCLinkerTool"239 />240 <Tool241 Name="VCALinkTool"242 />243 <Tool244 Name="VCManifestTool"245 />246 <Tool247 Name="VCXDCMakeTool"248 />249 <Tool250 Name="VCBscMakeTool"251 />252 <Tool253 Name="VCFxCopTool"254 />255 <Tool256 Name="VCAppVerifierTool"257 />258 <Tool259 Name="VCWebDeploymentTool"260 />261 <Tool262 Name="VCPostBuildEventTool"263 />264 </Configuration>265 141 </Configurations> 266 142 <References> … … 273 149 > 274 150 <File 275 RelativePath="..\..\src\orxonox\core\ArgReader.cc"276 >277 </File>278 <File279 151 RelativePath="..\..\src\orxonox\core\BaseObject.cc" 280 152 > … … 313 185 </File> 314 186 <File 187 RelativePath="..\..\src\orxonox\core\InputEventListener.cc" 188 > 189 </File> 190 <File 191 RelativePath="..\..\src\orxonox\core\InputHandler.cc" 192 > 193 </File> 194 <File 195 RelativePath="..\..\src\orxonox\core\InputManager.cc" 196 > 197 </File> 198 <File 315 199 RelativePath="..\..\src\orxonox\core\Language.cc" 316 200 > … … 330 214 <File 331 215 RelativePath="..\..\src\orxonox\core\OutputHandler.cc" 216 > 217 </File> 218 <File 219 RelativePath="..\..\src\orxonox\core\Script.cc" 332 220 > 333 221 </File> … … 351 239 > 352 240 <File 353 RelativePath="..\..\src\orxonox\core\ArgReader.h"354 >355 </File>356 <File357 241 RelativePath="..\..\src\orxonox\core\BaseObject.h" 358 242 > … … 415 299 </File> 416 300 <File 301 RelativePath="..\..\src\orxonox\core\InputEvent.h" 302 > 303 </File> 304 <File 305 RelativePath="..\..\src\orxonox\core\InputEventListener.h" 306 > 307 </File> 308 <File 309 RelativePath="..\..\src\orxonox\core\InputHandler.h" 310 > 311 </File> 312 <File 313 RelativePath="..\..\src\orxonox\core\InputManager.h" 314 > 315 </File> 316 <File 417 317 RelativePath="..\..\src\orxonox\core\Iterator.h" 418 318 > … … 444 344 <File 445 345 RelativePath="..\..\src\orxonox\core\OutputHandler.h" 346 > 347 </File> 348 <File 349 RelativePath="..\..\src\orxonox\core\Script.h" 446 350 > 447 351 </File> -
code/trunk/visual_studio/vc8/network.vcproj
r790 r1024 139 139 /> 140 140 </Configuration> 141 <Configuration142 Name="Release_SSE|Win32"143 ConfigurationType="2"144 InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\network_properties.vsprops"145 CharacterSet="1"146 WholeProgramOptimization="1"147 >148 <Tool149 Name="VCPreBuildEventTool"150 />151 <Tool152 Name="VCCustomBuildTool"153 />154 <Tool155 Name="VCXMLDataGeneratorTool"156 />157 <Tool158 Name="VCWebServiceProxyGeneratorTool"159 />160 <Tool161 Name="VCMIDLTool"162 />163 <Tool164 Name="VCCLCompilerTool"165 />166 <Tool167 Name="VCManagedResourceCompilerTool"168 />169 <Tool170 Name="VCResourceCompilerTool"171 />172 <Tool173 Name="VCPreLinkEventTool"174 />175 <Tool176 Name="VCLinkerTool"177 />178 <Tool179 Name="VCALinkTool"180 />181 <Tool182 Name="VCManifestTool"183 />184 <Tool185 Name="VCXDCMakeTool"186 />187 <Tool188 Name="VCBscMakeTool"189 />190 <Tool191 Name="VCFxCopTool"192 />193 <Tool194 Name="VCAppVerifierTool"195 />196 <Tool197 Name="VCWebDeploymentTool"198 />199 <Tool200 Name="VCPostBuildEventTool"201 />202 </Configuration>203 <Configuration204 Name="Release_SSE2|Win32"205 ConfigurationType="2"206 InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\network_properties.vsprops"207 CharacterSet="1"208 WholeProgramOptimization="1"209 >210 <Tool211 Name="VCPreBuildEventTool"212 />213 <Tool214 Name="VCCustomBuildTool"215 />216 <Tool217 Name="VCXMLDataGeneratorTool"218 />219 <Tool220 Name="VCWebServiceProxyGeneratorTool"221 />222 <Tool223 Name="VCMIDLTool"224 />225 <Tool226 Name="VCCLCompilerTool"227 />228 <Tool229 Name="VCManagedResourceCompilerTool"230 />231 <Tool232 Name="VCResourceCompilerTool"233 />234 <Tool235 Name="VCPreLinkEventTool"236 />237 <Tool238 Name="VCLinkerTool"239 />240 <Tool241 Name="VCALinkTool"242 />243 <Tool244 Name="VCManifestTool"245 />246 <Tool247 Name="VCXDCMakeTool"248 />249 <Tool250 Name="VCBscMakeTool"251 />252 <Tool253 Name="VCFxCopTool"254 />255 <Tool256 Name="VCAppVerifierTool"257 />258 <Tool259 Name="VCWebDeploymentTool"260 />261 <Tool262 Name="VCPostBuildEventTool"263 />264 </Configuration>265 141 </Configurations> 266 142 <References> … … 307 183 /> 308 184 </FileConfiguration> 309 <FileConfiguration310 Name="Release_SSE|Win32"311 ExcludedFromBuild="true"312 >313 <Tool314 Name="VCCLCompilerTool"315 />316 </FileConfiguration>317 <FileConfiguration318 Name="Release_SSE2|Win32"319 ExcludedFromBuild="true"320 >321 <Tool322 Name="VCCLCompilerTool"323 />324 </FileConfiguration>325 185 </File> 326 186 <File … … 343 203 /> 344 204 </FileConfiguration> 345 <FileConfiguration346 Name="Release_SSE|Win32"347 ExcludedFromBuild="true"348 >349 <Tool350 Name="VCCLCompilerTool"351 />352 </FileConfiguration>353 <FileConfiguration354 Name="Release_SSE2|Win32"355 ExcludedFromBuild="true"356 >357 <Tool358 Name="VCCLCompilerTool"359 />360 </FileConfiguration>361 205 </File> 362 206 <File … … 379 223 /> 380 224 </FileConfiguration> 381 <FileConfiguration382 Name="Release_SSE|Win32"383 ExcludedFromBuild="true"384 >385 <Tool386 Name="VCCLCompilerTool"387 />388 </FileConfiguration>389 <FileConfiguration390 Name="Release_SSE2|Win32"391 ExcludedFromBuild="true"392 >393 <Tool394 Name="VCCLCompilerTool"395 />396 </FileConfiguration>397 225 </File> 398 226 <File … … 415 243 /> 416 244 </FileConfiguration> 417 <FileConfiguration418 Name="Release_SSE|Win32"419 ExcludedFromBuild="true"420 >421 <Tool422 Name="VCCLCompilerTool"423 />424 </FileConfiguration>425 <FileConfiguration426 Name="Release_SSE2|Win32"427 ExcludedFromBuild="true"428 >429 <Tool430 Name="VCCLCompilerTool"431 />432 </FileConfiguration>433 245 </File> 434 246 <File … … 451 263 /> 452 264 </FileConfiguration> 453 <FileConfiguration454 Name="Release_SSE|Win32"455 ExcludedFromBuild="true"456 >457 <Tool458 Name="VCCLCompilerTool"459 />460 </FileConfiguration>461 <FileConfiguration462 Name="Release_SSE2|Win32"463 ExcludedFromBuild="true"464 >465 <Tool466 Name="VCCLCompilerTool"467 />468 </FileConfiguration>469 265 </File> 470 266 <File … … 479 275 RelativePath="..\..\src\network\PacketBuffer.cc" 480 276 > 481 </File>482 <File483 RelativePath="..\..\src\network\PacketBufferTestExt.cc"484 >485 <FileConfiguration486 Name="Debug|Win32"487 ExcludedFromBuild="true"488 >489 <Tool490 Name="VCCLCompilerTool"491 />492 </FileConfiguration>493 <FileConfiguration494 Name="Release|Win32"495 ExcludedFromBuild="true"496 >497 <Tool498 Name="VCCLCompilerTool"499 />500 </FileConfiguration>501 <FileConfiguration502 Name="Release_SSE|Win32"503 ExcludedFromBuild="true"504 >505 <Tool506 Name="VCCLCompilerTool"507 />508 </FileConfiguration>509 <FileConfiguration510 Name="Release_SSE2|Win32"511 ExcludedFromBuild="true"512 >513 <Tool514 Name="VCCLCompilerTool"515 />516 </FileConfiguration>517 277 </File> 518 278 <File -
code/trunk/visual_studio/vc8/orxonox.vcproj
r1021 r1024 143 143 /> 144 144 </Configuration> 145 <Configuration146 Name="Release_SSE|Win32"147 ConfigurationType="1"148 InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\orxonox_properties.vsprops"149 CharacterSet="1"150 WholeProgramOptimization="1"151 >152 <Tool153 Name="VCPreBuildEventTool"154 />155 <Tool156 Name="VCCustomBuildTool"157 />158 <Tool159 Name="VCXMLDataGeneratorTool"160 />161 <Tool162 Name="VCWebServiceProxyGeneratorTool"163 />164 <Tool165 Name="VCMIDLTool"166 />167 <Tool168 Name="VCCLCompilerTool"169 AdditionalOptions="/Zm200"170 />171 <Tool172 Name="VCManagedResourceCompilerTool"173 />174 <Tool175 Name="VCResourceCompilerTool"176 />177 <Tool178 Name="VCPreLinkEventTool"179 />180 <Tool181 Name="VCLinkerTool"182 EntryPointSymbol=""183 />184 <Tool185 Name="VCALinkTool"186 />187 <Tool188 Name="VCManifestTool"189 />190 <Tool191 Name="VCXDCMakeTool"192 />193 <Tool194 Name="VCBscMakeTool"195 />196 <Tool197 Name="VCFxCopTool"198 />199 <Tool200 Name="VCAppVerifierTool"201 />202 <Tool203 Name="VCWebDeploymentTool"204 />205 <Tool206 Name="VCPostBuildEventTool"207 />208 </Configuration>209 <Configuration210 Name="Release_SSE2|Win32"211 ConfigurationType="1"212 InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\orxonox_properties.vsprops"213 CharacterSet="1"214 WholeProgramOptimization="1"215 >216 <Tool217 Name="VCPreBuildEventTool"218 />219 <Tool220 Name="VCCustomBuildTool"221 />222 <Tool223 Name="VCXMLDataGeneratorTool"224 />225 <Tool226 Name="VCWebServiceProxyGeneratorTool"227 />228 <Tool229 Name="VCMIDLTool"230 />231 <Tool232 Name="VCCLCompilerTool"233 AdditionalOptions="/Zm200"234 />235 <Tool236 Name="VCManagedResourceCompilerTool"237 />238 <Tool239 Name="VCResourceCompilerTool"240 />241 <Tool242 Name="VCPreLinkEventTool"243 />244 <Tool245 Name="VCLinkerTool"246 EntryPointSymbol=""247 />248 <Tool249 Name="VCALinkTool"250 />251 <Tool252 Name="VCManifestTool"253 />254 <Tool255 Name="VCXDCMakeTool"256 />257 <Tool258 Name="VCBscMakeTool"259 />260 <Tool261 Name="VCFxCopTool"262 />263 <Tool264 Name="VCAppVerifierTool"265 />266 <Tool267 Name="VCWebDeploymentTool"268 />269 <Tool270 Name="VCPostBuildEventTool"271 />272 </Configuration>273 145 </Configurations> 274 146 <References> … … 285 157 </File> 286 158 <File 287 RelativePath="..\..\src\orxonox\InputEventListener.cc"288 >289 </File>290 <File291 RelativePath="..\..\src\orxonox\InputHandler.cc"292 >293 </File>294 <File295 RelativePath="..\..\src\orxonox\InputManager.cc"296 >297 <FileConfiguration298 Name="Debug|Win32"299 ExcludedFromBuild="true"300 >301 <Tool302 Name="VCCLCompilerTool"303 />304 </FileConfiguration>305 </File>306 <File307 159 RelativePath="..\..\src\orxonox\Main.cc" 308 160 > … … 331 183 /> 332 184 </FileConfiguration> 333 <FileConfiguration334 Name="Release_SSE|Win32"335 >336 <Tool337 Name="VCCLCompilerTool"338 UsePrecompiledHeader="1"339 />340 </FileConfiguration>341 <FileConfiguration342 Name="Release_SSE2|Win32"343 >344 <Tool345 Name="VCCLCompilerTool"346 UsePrecompiledHeader="1"347 />348 </FileConfiguration>349 </File>350 <File351 RelativePath="..\..\src\orxonox\SpaceshipSteering.cc"352 >353 <FileConfiguration354 Name="Debug|Win32"355 ExcludedFromBuild="true"356 >357 <Tool358 Name="VCCLCompilerTool"359 />360 </FileConfiguration>361 <FileConfiguration362 Name="Release|Win32"363 ExcludedFromBuild="true"364 >365 <Tool366 Name="VCCLCompilerTool"367 />368 </FileConfiguration>369 <FileConfiguration370 Name="Release_SSE|Win32"371 ExcludedFromBuild="true"372 >373 <Tool374 Name="VCCLCompilerTool"375 />376 </FileConfiguration>377 <FileConfiguration378 Name="Release_SSE2|Win32"379 ExcludedFromBuild="true"380 >381 <Tool382 Name="VCCLCompilerTool"383 />384 </FileConfiguration>385 185 </File> 386 186 <Filter … … 430 230 RelativePath="..\..\src\orxonox\objects\SpaceShip.cc" 431 231 > 432 </File>433 <File434 RelativePath="..\..\src\orxonox\objects\SpaceshipSteeringObject.cc"435 >436 <FileConfiguration437 Name="Debug|Win32"438 ExcludedFromBuild="true"439 >440 <Tool441 Name="VCCLCompilerTool"442 />443 </FileConfiguration>444 <FileConfiguration445 Name="Release|Win32"446 ExcludedFromBuild="true"447 >448 <Tool449 Name="VCCLCompilerTool"450 />451 </FileConfiguration>452 <FileConfiguration453 Name="Release_SSE|Win32"454 ExcludedFromBuild="true"455 >456 <Tool457 Name="VCCLCompilerTool"458 />459 </FileConfiguration>460 <FileConfiguration461 Name="Release_SSE2|Win32"462 ExcludedFromBuild="true"463 >464 <Tool465 Name="VCCLCompilerTool"466 />467 </FileConfiguration>468 </File>469 <File470 RelativePath="..\..\src\orxonox\objects\test1.cc"471 >472 <FileConfiguration473 Name="Debug|Win32"474 ExcludedFromBuild="true"475 >476 <Tool477 Name="VCCLCompilerTool"478 UsePrecompiledHeader="0"479 />480 </FileConfiguration>481 <FileConfiguration482 Name="Release|Win32"483 ExcludedFromBuild="true"484 >485 <Tool486 Name="VCCLCompilerTool"487 UsePrecompiledHeader="0"488 />489 </FileConfiguration>490 <FileConfiguration491 Name="Release_SSE|Win32"492 ExcludedFromBuild="true"493 >494 <Tool495 Name="VCCLCompilerTool"496 UsePrecompiledHeader="0"497 />498 </FileConfiguration>499 <FileConfiguration500 Name="Release_SSE2|Win32"501 ExcludedFromBuild="true"502 >503 <Tool504 Name="VCCLCompilerTool"505 UsePrecompiledHeader="0"506 />507 </FileConfiguration>508 </File>509 <File510 RelativePath="..\..\src\orxonox\objects\test2.cc"511 >512 <FileConfiguration513 Name="Debug|Win32"514 ExcludedFromBuild="true"515 >516 <Tool517 Name="VCCLCompilerTool"518 UsePrecompiledHeader="0"519 />520 </FileConfiguration>521 <FileConfiguration522 Name="Release|Win32"523 ExcludedFromBuild="true"524 >525 <Tool526 Name="VCCLCompilerTool"527 UsePrecompiledHeader="0"528 />529 </FileConfiguration>530 <FileConfiguration531 Name="Release_SSE|Win32"532 ExcludedFromBuild="true"533 >534 <Tool535 Name="VCCLCompilerTool"536 UsePrecompiledHeader="0"537 />538 </FileConfiguration>539 <FileConfiguration540 Name="Release_SSE2|Win32"541 ExcludedFromBuild="true"542 >543 <Tool544 Name="VCCLCompilerTool"545 UsePrecompiledHeader="0"546 />547 </FileConfiguration>548 </File>549 <File550 RelativePath="..\..\src\orxonox\objects\test3.cc"551 >552 <FileConfiguration553 Name="Debug|Win32"554 ExcludedFromBuild="true"555 >556 <Tool557 Name="VCCLCompilerTool"558 UsePrecompiledHeader="0"559 />560 </FileConfiguration>561 <FileConfiguration562 Name="Release|Win32"563 ExcludedFromBuild="true"564 >565 <Tool566 Name="VCCLCompilerTool"567 UsePrecompiledHeader="0"568 />569 </FileConfiguration>570 <FileConfiguration571 Name="Release_SSE|Win32"572 ExcludedFromBuild="true"573 >574 <Tool575 Name="VCCLCompilerTool"576 UsePrecompiledHeader="0"577 />578 </FileConfiguration>579 <FileConfiguration580 Name="Release_SSE2|Win32"581 ExcludedFromBuild="true"582 >583 <Tool584 Name="VCCLCompilerTool"585 UsePrecompiledHeader="0"586 />587 </FileConfiguration>588 232 </File> 589 233 <File … … 659 303 </File> 660 304 <File 661 RelativePath="..\..\src\orxonox\InputEvent.h"662 >663 </File>664 <File665 RelativePath="..\..\src\orxonox\InputEventListener.h"666 >667 </File>668 <File669 RelativePath="..\..\src\orxonox\InputHandler.h"670 >671 </File>672 <File673 RelativePath="..\..\src\orxonox\InputManager.h"674 >675 </File>676 <File677 305 RelativePath="..\..\src\orxonox\Orxonox.h" 678 306 > … … 690 318 > 691 319 </File> 692 <File693 RelativePath="..\..\src\orxonox\SpaceshipSteering.h"694 >695 </File>696 320 <Filter 697 321 Name="hud" … … 739 363 <File 740 364 RelativePath="..\..\src\orxonox\objects\SpaceShip.h" 741 >742 </File>743 <File744 RelativePath="..\..\src\orxonox\objects\SpaceshipSteeringObject.h"745 >746 </File>747 <File748 RelativePath="..\..\src\orxonox\objects\Test.h"749 >750 </File>751 <File752 RelativePath="..\..\src\orxonox\objects\test1.h"753 >754 </File>755 <File756 RelativePath="..\..\src\orxonox\objects\test2.h"757 >758 </File>759 <File760 RelativePath="..\..\src\orxonox\objects\test3.h"761 365 > 762 366 </File> … … 828 432 UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" 829 433 > 830 <File831 RelativePath="..\..\bin\media.cfg"832 >833 </File>834 <File835 RelativePath="..\..\bin\ogre.cfg"836 >837 </File>838 <File839 RelativePath="..\..\bin\ogre.cfg-init"840 >841 </File>842 <File843 RelativePath="..\..\bin\Ogre.log"844 >845 </File>846 <File847 RelativePath="..\..\bin\orxonox.bat"848 >849 </File>850 <File851 RelativePath="..\..\bin\orxonox.ini"852 >853 </File>854 <File855 RelativePath="..\..\bin\orxonox.log"856 >857 </File>858 <File859 RelativePath="..\..\bin\orxonox_d.bat"860 >861 </File>862 <File863 RelativePath="..\..\bin\plugins.cfg"864 >865 </File>866 <File867 RelativePath="..\..\bin\plugins.cfg-init"868 >869 </File>870 <File871 RelativePath="..\..\bin\plugins_d.cfg"872 >873 </File>874 <File875 RelativePath="..\..\bin\quake3settings.cfg"876 >877 </File>878 <File879 RelativePath="..\..\bin\resources.cfg"880 >881 </File>882 <File883 RelativePath="..\..\bin\run-script"884 >885 </File>886 <File887 RelativePath="..\..\bin\translation_default.lang"888 >889 </File>890 <File891 RelativePath="..\..\bin\translation_german.lang"892 >893 </File>894 434 </Filter> 895 435 </Files> -
code/trunk/visual_studio/vc8/tixml.vcproj
r890 r1024 19 19 Name="Debug|Win32" 20 20 ConfigurationType="4" 21 InheritedPropertySheets="$(SolutionDir)base_properties_debug.vsprops;..\ util_properties.vsprops"21 InheritedPropertySheets="$(SolutionDir)base_properties_debug.vsprops;..\tixml_properties.vsprops" 22 22 CharacterSet="1" 23 23 > … … 71 71 Name="Release|Win32" 72 72 ConfigurationType="4" 73 InheritedPropertySheets="$(SolutionDir)base_properties_release.vsprops;..\util_properties.vsprops" 74 CharacterSet="1" 75 WholeProgramOptimization="1" 76 > 77 <Tool 78 Name="VCPreBuildEventTool" 79 /> 80 <Tool 81 Name="VCCustomBuildTool" 82 /> 83 <Tool 84 Name="VCXMLDataGeneratorTool" 85 /> 86 <Tool 87 Name="VCWebServiceProxyGeneratorTool" 88 /> 89 <Tool 90 Name="VCMIDLTool" 91 /> 92 <Tool 93 Name="VCCLCompilerTool" 94 /> 95 <Tool 96 Name="VCManagedResourceCompilerTool" 97 /> 98 <Tool 99 Name="VCResourceCompilerTool" 100 /> 101 <Tool 102 Name="VCPreLinkEventTool" 103 /> 104 <Tool 105 Name="VCLibrarianTool" 106 /> 107 <Tool 108 Name="VCALinkTool" 109 /> 110 <Tool 111 Name="VCXDCMakeTool" 112 /> 113 <Tool 114 Name="VCBscMakeTool" 115 /> 116 <Tool 117 Name="VCFxCopTool" 118 /> 119 <Tool 120 Name="VCPostBuildEventTool" 121 /> 122 </Configuration> 123 <Configuration 124 Name="Release_SSE|Win32" 125 ConfigurationType="4" 126 InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\util_properties.vsprops" 127 CharacterSet="1" 128 WholeProgramOptimization="1" 129 > 130 <Tool 131 Name="VCPreBuildEventTool" 132 /> 133 <Tool 134 Name="VCCustomBuildTool" 135 /> 136 <Tool 137 Name="VCXMLDataGeneratorTool" 138 /> 139 <Tool 140 Name="VCWebServiceProxyGeneratorTool" 141 /> 142 <Tool 143 Name="VCMIDLTool" 144 /> 145 <Tool 146 Name="VCCLCompilerTool" 147 /> 148 <Tool 149 Name="VCManagedResourceCompilerTool" 150 /> 151 <Tool 152 Name="VCResourceCompilerTool" 153 /> 154 <Tool 155 Name="VCPreLinkEventTool" 156 /> 157 <Tool 158 Name="VCLibrarianTool" 159 /> 160 <Tool 161 Name="VCALinkTool" 162 /> 163 <Tool 164 Name="VCXDCMakeTool" 165 /> 166 <Tool 167 Name="VCBscMakeTool" 168 /> 169 <Tool 170 Name="VCFxCopTool" 171 /> 172 <Tool 173 Name="VCPostBuildEventTool" 174 /> 175 </Configuration> 176 <Configuration 177 Name="Release_SSE2|Win32" 178 ConfigurationType="4" 179 InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\util_properties.vsprops" 73 InheritedPropertySheets="$(SolutionDir)base_properties_release.vsprops;..\tixml_properties.vsprops" 180 74 CharacterSet="1" 181 75 WholeProgramOptimization="1" … … 278 172 > 279 173 </File> 280 <File281 RelativePath="..\..\src\util\tinyxml\TinyXMLPrereqs.h"282 >283 </File>284 174 </Filter> 285 175 </Files> -
code/trunk/visual_studio/vc8/tolua++.vcproj
r1022 r1024 131 131 > 132 132 <File 133 RelativePath="..\..\src\util\tolua ++\tolua.c"133 RelativePath="..\..\src\util\tolua\tolua.c" 134 134 > 135 135 </File> 136 136 <File 137 RelativePath="..\..\src\util\tolua ++\tolua_event.c"137 RelativePath="..\..\src\util\tolua\tolua_bind.cc" 138 138 > 139 139 </File> 140 140 <File 141 RelativePath="..\..\src\util\tolua ++\tolua_is.c"141 RelativePath="..\..\src\util\tolua\tolua_event.c" 142 142 > 143 143 </File> 144 144 <File 145 RelativePath="..\..\src\util\tolua ++\tolua_map.c"145 RelativePath="..\..\src\util\tolua\tolua_is.c" 146 146 > 147 147 </File> 148 148 <File 149 RelativePath="..\..\src\util\tolua ++\tolua_push.c"149 RelativePath="..\..\src\util\tolua\tolua_map.c" 150 150 > 151 151 </File> 152 152 <File 153 RelativePath="..\..\src\util\tolua ++\tolua_to.c"153 RelativePath="..\..\src\util\tolua\tolua_push.c" 154 154 > 155 155 </File> 156 156 <File 157 RelativePath="..\..\src\util\tolua++\toluabind.c" 157 RelativePath="..\..\src\util\tolua\tolua_to.c" 158 > 159 </File> 160 <File 161 RelativePath="..\..\src\util\tolua\toluabind.c" 158 162 > 159 163 </File> … … 165 169 > 166 170 <File 167 RelativePath="..\..\src\util\tolua ++\tolua_event.h"171 RelativePath="..\..\src\util\tolua\tolua++.h" 168 172 > 169 173 </File> 170 174 <File 171 RelativePath="..\..\src\util\tolua ++\toluabind.h"175 RelativePath="..\..\src\util\tolua\tolua_bind.h" 172 176 > 173 177 </File> 174 178 <File 175 RelativePath="..\..\src\util\tolua++\toluabind_default.h" 179 RelativePath="..\..\src\util\tolua\tolua_event.h" 180 > 181 </File> 182 <File 183 RelativePath="..\..\src\util\tolua\toluabind.h" 184 > 185 </File> 186 <File 187 RelativePath="..\..\src\util\tolua\toluabind_default.h" 176 188 > 177 189 </File> -
code/trunk/visual_studio/vc8/util.vcproj
r890 r1024 139 139 /> 140 140 </Configuration> 141 <Configuration142 Name="Release_SSE|Win32"143 ConfigurationType="2"144 InheritedPropertySheets="..\base_properties_release_sse.vsprops;..\util_properties.vsprops"145 CharacterSet="1"146 WholeProgramOptimization="1"147 >148 <Tool149 Name="VCPreBuildEventTool"150 />151 <Tool152 Name="VCCustomBuildTool"153 />154 <Tool155 Name="VCXMLDataGeneratorTool"156 />157 <Tool158 Name="VCWebServiceProxyGeneratorTool"159 />160 <Tool161 Name="VCMIDLTool"162 />163 <Tool164 Name="VCCLCompilerTool"165 />166 <Tool167 Name="VCManagedResourceCompilerTool"168 />169 <Tool170 Name="VCResourceCompilerTool"171 />172 <Tool173 Name="VCPreLinkEventTool"174 />175 <Tool176 Name="VCLinkerTool"177 />178 <Tool179 Name="VCALinkTool"180 />181 <Tool182 Name="VCManifestTool"183 />184 <Tool185 Name="VCXDCMakeTool"186 />187 <Tool188 Name="VCBscMakeTool"189 />190 <Tool191 Name="VCFxCopTool"192 />193 <Tool194 Name="VCAppVerifierTool"195 />196 <Tool197 Name="VCWebDeploymentTool"198 />199 <Tool200 Name="VCPostBuildEventTool"201 />202 </Configuration>203 <Configuration204 Name="Release_SSE2|Win32"205 ConfigurationType="2"206 InheritedPropertySheets="..\base_properties_release_sse2.vsprops;..\util_properties.vsprops"207 CharacterSet="1"208 WholeProgramOptimization="1"209 >210 <Tool211 Name="VCPreBuildEventTool"212 />213 <Tool214 Name="VCCustomBuildTool"215 />216 <Tool217 Name="VCXMLDataGeneratorTool"218 />219 <Tool220 Name="VCWebServiceProxyGeneratorTool"221 />222 <Tool223 Name="VCMIDLTool"224 />225 <Tool226 Name="VCCLCompilerTool"227 />228 <Tool229 Name="VCManagedResourceCompilerTool"230 />231 <Tool232 Name="VCResourceCompilerTool"233 />234 <Tool235 Name="VCPreLinkEventTool"236 />237 <Tool238 Name="VCLinkerTool"239 />240 <Tool241 Name="VCALinkTool"242 />243 <Tool244 Name="VCManifestTool"245 />246 <Tool247 Name="VCXDCMakeTool"248 />249 <Tool250 Name="VCBscMakeTool"251 />252 <Tool253 Name="VCFxCopTool"254 />255 <Tool256 Name="VCAppVerifierTool"257 />258 <Tool259 Name="VCWebDeploymentTool"260 />261 <Tool262 Name="VCPostBuildEventTool"263 />264 </Configuration>265 141 </Configurations> 266 142 <References> … … 273 149 > 274 150 <File 151 RelativePath="..\..\src\util\ArgReader.cc" 152 > 153 </File> 154 <File 275 155 RelativePath="..\..\src\util\Math.cc" 276 156 > … … 293 173 </File> 294 174 <File 295 RelativePath="..\..\src\util\ substring.cc"175 RelativePath="..\..\src\util\SubString.cc" 296 176 > 297 177 </File> … … 303 183 > 304 184 <File 185 RelativePath="..\..\src\util\ArgReader.h" 186 > 187 </File> 188 <File 305 189 RelativePath="..\..\src\util\Convert.h" 306 190 > … … 339 223 </File> 340 224 <File 341 RelativePath="..\..\src\util\ substring.h"225 RelativePath="..\..\src\util\SubString.h" 342 226 > 343 227 </File>
Note: See TracChangeset
for help on using the changeset viewer.