| 1269 | } |
| 1270 | |
| 1271 | std::vector<std::string> cmFastbuildNormalTargetGenerator::GetArches() const |
| 1272 | { |
| 1273 | auto arches = this->GetGeneratorTarget()->GetAppleArchs(Config, {}); |
| 1274 | // Don't add any arch-specific logic if arch is only one. |
| 1275 | if (arches.empty() || arches.size() == 1) { |
| 1276 | arches.clear(); |
| 1277 | arches.emplace_back(); |
| 1278 | } |
| 1279 | return arches; |
| 1280 | } |
| 1281 | |
| 1282 | void cmFastbuildNormalTargetGenerator::GetCudaDeviceLinkLinkerAndArgs( |
| 1283 | std::string& linker, std::string& args) const |
no test coverage detected