You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
500 B
24 lines
500 B
12 years ago
|
if(VLD_INCLUDE_DIR AND VLD_LIBRARY)
|
||
|
set(VLD_FIND_QUIETLY TRUE)
|
||
|
endif()
|
||
|
|
||
|
|
||
|
find_path(VLD_INCLUDE_DIR vld.h)
|
||
|
find_library(VLD_LIBRARY NAMES vld)
|
||
|
set(VLD_LIBRARIES ${VLD_LIBRARY})
|
||
|
|
||
|
|
||
|
if(VLD_INCLUDE_DIR AND VLD_LIBRARY)
|
||
|
set(VLD_FOUND TRUE)
|
||
|
endif()
|
||
|
|
||
|
if (VLD_FOUND)
|
||
|
if(NOT VLD_FIND_QUIETLY)
|
||
|
message(STATUS "Found Visual Leak Detector: ${VLD_INCLUDE_DIR}")
|
||
|
endif()
|
||
|
else()
|
||
|
if(VLD_FIND_REQUIRED)
|
||
|
message(FATAL_ERROR "Could not find Visual Leak Detector")
|
||
|
endif()
|
||
|
endif()
|