Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8409 for code/trunk/cmake


Ignore:
Timestamp:
May 6, 2011, 3:37:01 AM (13 years ago)
Author:
rgrieder
Message:

Found a better solution to make the Visual Leak Detector (MSVC specific) work so that it doesn't need to be included in every single source file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/cmake/tools/TargetUtilities.cmake

    r8405 r8409  
    304304  ENDIF()
    305305
     306  # Visual Leak Detector specific stuff (avoids the include)
     307  IF(HAVE_VLD)
     308    TARGET_LINK_LIBRARIES(${_target_name} ${VLD_LIBRARY})
     309  ENDIF()
     310
    306311  # RPATH settings for the installation
    307312  IF("${_target_type}" STREQUAL "LIBRARY")
Note: See TracChangeset for help on using the changeset viewer.