| 4747 | } |
| 4748 | |
| 4749 | bool cmVisualStudio10TargetGenerator::ComputeLibOptions() |
| 4750 | { |
| 4751 | if (this->GeneratorTarget->GetType() == cmStateEnums::STATIC_LIBRARY) { |
| 4752 | for (std::string const& c : this->Configurations) { |
| 4753 | if (!this->ComputeLibOptions(c)) { |
| 4754 | return false; |
| 4755 | } |
| 4756 | } |
| 4757 | } |
| 4758 | return true; |
| 4759 | } |
| 4760 | |
| 4761 | bool cmVisualStudio10TargetGenerator::ComputeLibOptions( |
| 4762 | std::string const& config) |
no test coverage detected