BUG: Report error when a target does not exist.

This commit is contained in:
Brad King 2006-02-16 17:49:59 -05:00
parent 3cd5fd4e7b
commit b3b341cbbe
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ bool cmSetTargetPropertiesCommand::InitialPass(
std::string message = "Can not find target to add properties to: ";
message += args[i];
this->SetError(message.c_str());
return false;
}
}
return true;