Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 15, 2009, 12:48:03 AM (16 years ago)
Author:
rgrieder
Message:

Windows version compiling and running so far (msvc and mingw).

Location:
code/branches/buildsystem3/src/core
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem3/src/core/Factory.h

    r2662 r2667  
    4949#include <map>
    5050#include <string>
    51 #include "util/Integers.h"
    5251
    5352namespace orxonox
  • code/branches/buildsystem3/src/core/Identifier.h

    r2662 r2667  
    6868#include "Super.h"
    6969#include "Functor.h"
    70 #include "util/Integers.h"
    7170#include "util/Debug.h"
    7271#include "util/String.h"
  • code/branches/buildsystem3/src/core/RootGameState.cc

    r2662 r2667  
    135135    {
    136136        // Don't catch errors when having a debugger in msvc
    137 #if ORXONOX_COMPILER != ORXONOX_COMPILER_MSVC || defined(NDEBUG)
     137#if !defined(ORXONOX_COMPILER_MSVC) || defined(NDEBUG)
    138138        try
    139139        {
     
    158158
    159159            this->deactivate();
    160 #if ORXONOX_COMPILER != ORXONOX_COMPILER_MSVC || defined(NDEBUG)
     160#if !defined(ORXONOX_COMPILER_MSVC) || defined(NDEBUG)
    161161        }
    162162        // Note: These are all unhandled exceptions that should not have made its way here!
Note: See TracChangeset for help on using the changeset viewer.