summaryrefslogtreecommitdiff
path: root/Tests/PDBDirectoryAndName/check_pdbs.cmake
blob: 89cdb3c72a8afb9c176739e934d1a398b082307e (plain)
1
2
3
4
5
6
7
8
9
10
if(NOT "${config}" MATCHES "[Dd][Ee][Bb]")
  return()
endif()
foreach(pdb ${pdbs})
  if(EXISTS "${pdb}")
    message(STATUS "PDB Exists: ${pdb}")
  else()
    message(SEND_ERROR "PDB MISSING: ${pdb}")
  endif()
endforeach()