| 68 | cmLocalVisualStudio10Generator::~cmLocalVisualStudio10Generator() = default; |
| 69 | |
| 70 | void cmLocalVisualStudio10Generator::GenerateTarget(cmGeneratorTarget* target) |
| 71 | { |
| 72 | if (static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator) |
| 73 | ->TargetIsFortranOnly(target)) { |
| 74 | this->cmLocalVisualStudio7Generator::GenerateTarget(target); |
| 75 | } else { |
| 76 | cmVisualStudio10TargetGenerator tg( |
| 77 | target, |
| 78 | static_cast<cmGlobalVisualStudio10Generator*>( |
| 79 | this->GetGlobalGenerator())); |
| 80 | tg.Generate(); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | void cmLocalVisualStudio10Generator::ReadAndStoreExternalGUID( |
| 85 | std::string const& name, char const* path) |
nothing calls this directly
no test coverage detected