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.
11 lines
226 B
11 lines
226 B
6 years ago
|
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:\n ${pdb}")
|
||
|
endif()
|
||
|
endforeach()
|