mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 10:38:08 +00:00
b294457e2b
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()
|