| 4513 | } |
| 4514 | |
| 4515 | bool cmVisualStudio10TargetGenerator::ComputeLinkOptions() |
| 4516 | { |
| 4517 | if (this->GeneratorTarget->GetType() == cmStateEnums::EXECUTABLE || |
| 4518 | this->GeneratorTarget->GetType() == cmStateEnums::SHARED_LIBRARY || |
| 4519 | this->GeneratorTarget->GetType() == cmStateEnums::MODULE_LIBRARY) { |
| 4520 | for (std::string const& c : this->Configurations) { |
| 4521 | if (!this->ComputeLinkOptions(c)) { |
| 4522 | return false; |
| 4523 | } |
| 4524 | } |
| 4525 | } |
| 4526 | return true; |
| 4527 | } |
| 4528 | |
| 4529 | bool cmVisualStudio10TargetGenerator::ComputeLinkOptions( |
| 4530 | std::string const& config) |
no test coverage detected