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

Method ObjectKindName

Source/cmFileAPI.cxx:534–546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

532}
533
534char const* cmFileAPI::ObjectKindName(ObjectKind kind)
535{
536 // Keep in sync with ObjectKind enum.
537 static char const* objectKindNames[] = {
538 "codemodel", //
539 "configureLog", //
540 "cache", //
541 "cmakeFiles", //
542 "toolchains", //
543 "__test" //
544 };
545 return objectKindNames[static_cast<size_t>(kind)];
546}
547
548std::string cmFileAPI::ObjectName(Object o)
549{

Callers 7

BuildClientRequestMethod · 0.95
BuildCodeModelMethod · 0.95
BuildConfigureLogMethod · 0.95
BuildCacheMethod · 0.95
BuildCMakeFilesMethod · 0.95
BuildToolchainsMethod · 0.95
BuildInternalTestMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected