| 4063 | } |
| 4064 | |
| 4065 | bool cmVisualStudio10TargetGenerator::ComputeCudaLinkOptions() |
| 4066 | { |
| 4067 | if (!this->GlobalGenerator->IsCudaEnabled()) { |
| 4068 | return true; |
| 4069 | } |
| 4070 | return std::all_of( |
| 4071 | this->Configurations.begin(), this->Configurations.end(), |
| 4072 | [this](std::string const& c) { return this->ComputeCudaLinkOptions(c); }); |
| 4073 | } |
| 4074 | |
| 4075 | bool cmVisualStudio10TargetGenerator::ComputeCudaLinkOptions( |
| 4076 | std::string const& configName) |
no test coverage detected