| 1446 | } |
| 1447 | |
| 1448 | bool cmGlobalXCodeGenerator::SpecialTargetEmitted(std::string const& tname) |
| 1449 | { |
| 1450 | if (tname == "ALL_BUILD"_s || tname == "install"_s || tname == "package"_s || |
| 1451 | tname == "RUN_TESTS"_s || tname == CMAKE_CHECK_BUILD_SYSTEM_TARGET) { |
| 1452 | if (this->TargetDoneSet.find(tname) != this->TargetDoneSet.end()) { |
| 1453 | return true; |
| 1454 | } |
| 1455 | this->TargetDoneSet.insert(tname); |
| 1456 | return false; |
| 1457 | } |
| 1458 | return false; |
| 1459 | } |
| 1460 | |
| 1461 | void cmGlobalXCodeGenerator::SetCurrentLocalGenerator(cmLocalGenerator* gen) |
| 1462 | { |
no test coverage detected