| 3343 | } |
| 3344 | |
| 3345 | bool cmVisualStudio10TargetGenerator::ComputeClOptions() |
| 3346 | { |
| 3347 | return std::all_of( |
| 3348 | this->Configurations.begin(), this->Configurations.end(), |
| 3349 | [this](std::string const& c) { return this->ComputeClOptions(c); }); |
| 3350 | } |
| 3351 | |
| 3352 | bool cmVisualStudio10TargetGenerator::ComputeClOptions( |
| 3353 | std::string const& configName) |
no test coverage detected