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