mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Teach the PDBDirectoryAndName test to check that the .pdb files appear where expected.
11 lines
224 B
CMake
11 lines
224 B
CMake
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()
|