Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 26, 2010, 9:07:43 PM (13 years ago)
Author:
rgrieder
Message:

Merged changes related to Visual Leak Detector and source file handling from sandbox QT to trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/OrxonoxConfig.h.in

    r7401 r7818  
    179179*/
    180180
    181 // Always include the memory leak detector for MSVC except for actual releases
    182 // Note: Although officially supported, VLD does not work with MSVC 9
    183 #if defined(ORXONOX_COMPILER_MSVC) && _MSC_VER < 1500 && !defined(ORXONOX_RELEASE)
     181// Include memory leak detector if available and not building actual release
     182#cmakedefine HAVE_VLD
     183#if defined(HAVE_VLD) && !defined(ORXONOX_RELEASE)
     184typedef uint32_t UINT32;
     185typedef wchar_t WCHAR;
     186struct HINSTANCE__;
     187typedef struct HINSTANCE__* HINSTANCE;
     188typedef HINSTANCE HMODULE;
     189#  ifndef NULL
     190#    define NULL 0
     191#  endif
    184192#  include <vld.h>
    185193#endif
Note: See TracChangeset for help on using the changeset viewer.