CMake/Tests/PDBDirectoryAndName/check_pdbs.cmake
Brad King b294457e2b Verify that PDB_(NAME|OUTPUT_DIRECTORY) are honored in test
Teach the PDBDirectoryAndName test to check that the .pdb files appear
where expected.
2012-09-25 15:23:35 -04:00

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()