| 4181 | } |
| 4182 | |
| 4183 | bool cmVisualStudio10TargetGenerator::ComputeMarmasmOptions() |
| 4184 | { |
| 4185 | if (!this->GlobalGenerator->IsMarmasmEnabled()) { |
| 4186 | return true; |
| 4187 | } |
| 4188 | return std::all_of( |
| 4189 | this->Configurations.begin(), this->Configurations.end(), |
| 4190 | [this](std::string const& c) { return this->ComputeMarmasmOptions(c); }); |
| 4191 | } |
| 4192 | |
| 4193 | bool cmVisualStudio10TargetGenerator::ComputeMarmasmOptions( |
| 4194 | std::string const& configName) |
no test coverage detected