| 4289 | } |
| 4290 | |
| 4291 | bool cmVisualStudio10TargetGenerator::ComputeNasmOptions() |
| 4292 | { |
| 4293 | if (!this->GlobalGenerator->IsNasmEnabled()) { |
| 4294 | return true; |
| 4295 | } |
| 4296 | return std::all_of( |
| 4297 | this->Configurations.begin(), this->Configurations.end(), |
| 4298 | [this](std::string const& c) { return this->ComputeNasmOptions(c); }); |
| 4299 | } |
| 4300 | |
| 4301 | bool cmVisualStudio10TargetGenerator::ComputeNasmOptions( |
| 4302 | std::string const& configName) |
no test coverage detected