Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 6, 2008, 9:51:01 PM (16 years ago)
Author:
rgrieder
Message:
  • changed library dependency dir to lib_precompiled/include/ in msvc properties
  • fixed a bug with tolua pkg file in msvc
  • (u)int64_t to (unsigned) long long (C-Standard, so most c++ will have it anyway)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/OrxonoxStableHeaders.h

    r1670 r1724  
    2828
    2929/**
    30  @file  OrxonoxStableHeaders.h
    31  @brief Contains the bigger (or smaller) header files in order to precompile them with MSVC
     30 @file
     31 @brief Contains the frequently used header files of our own writing
    3232 */
    3333
     
    3737#include "util/OrxonoxPlatform.h"
    3838
    39 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC
     39#if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH)
    4040
    4141// including std headers here is useless since they're already precompiled
     
    4545#  define WIN32_LEAN_AND_MEAN
    4646#endif
    47 
    4847#include <Ogre.h>
    4948#include <CEGUI.h>
     
    5352#include <boost/thread/thread.hpp>
    5453
    55 //-----------------------------------------------------------------------
    56 // ORXONOX HEADERS
    57 //-----------------------------------------------------------------------
    58 
    5954#include "tinyxml/ticpp.h"
    6055#include "tinyxml/tinyxml.h"
     56
     57
     58//----------- Our files ----------
     59//--------------------------------
     60// only include when not debugging so that we may find issues with missing headers quicker
     61#if defined(NDEBUG)
    6162
    6263#include "util/Convert.h"
     
    8889//#include "objects/WorldEntity.h"
    8990
    90 #endif /* Compiler MSVC */
     91#endif /* ifdef NDEBUG */
     92
     93#endif /* ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC && !defined(ORXONOX_DISABLE_PCH) */
    9194
    9295#endif /* _OrxonoxStableHeaders_H__ */
Note: See TracChangeset for help on using the changeset viewer.