MCPcopy Create free account
hub / github.com/Kitware/CMake / SpecialTargetEmitted

Method SpecialTargetEmitted

Source/cmGlobalXCodeGenerator.cxx:1448–1459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1446}
1447
1448bool 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
1461void cmGlobalXCodeGenerator::SetCurrentLocalGenerator(cmLocalGenerator* gen)
1462{

Callers 1

CreateXCodeTargetMethod · 0.95

Calls 3

findMethod · 0.45
endMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected