| 247 | } |
| 248 | |
| 249 | void cmMakefile::IssueInvalidTargetNameError( |
| 250 | std::string const& targetName) const |
| 251 | { |
| 252 | this->IssueMessage( |
| 253 | MessageType::FATAL_ERROR, |
| 254 | cmStrCat("The target name \"", targetName, |
| 255 | "\" is reserved or not valid for certain " |
| 256 | "CMake features, such as generator expressions, and may result " |
| 257 | "in undefined behavior.")); |
| 258 | } |
| 259 | |
| 260 | void cmMakefile::MaybeWarnCMP0074(std::string const& rootVar, cmValue rootDef, |
| 261 | cm::optional<std::string> const& rootEnv) |
no test coverage detected