summaryrefslogtreecommitdiff
path: root/indra/cmake/VisualLeakDetector.cmake
blob: 6a20148b47b497ed26a0025839deb35f988b310b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- cmake -*-

  set(INCLUDE_VLD_CMAKE OFF CACHE BOOL "Build the Windows viewer with Visual Leak Detector turned on or off")

  if (INCLUDE_VLD_CMAKE)

    if (WINDOWS)
      add_definitions(-DINCLUDE_VLD=1)
    endif (WINDOWS)

  endif (INCLUDE_VLD_CMAKE)