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

Method GetTargetDirectory

Source/cmLocalVisualStudio7Generator.cxx:2215–2226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2213}
2214
2215std::string cmLocalVisualStudio7Generator::GetTargetDirectory(
2216 cmGeneratorTarget const* target,
2217 cmStateEnums::IntermediateDirKind kind) const
2218{
2219 std::string dir;
2220 if (target->GetUseShortObjectNames(kind)) {
2221 dir = this->ComputeShortTargetDirectory(target);
2222 } else {
2223 dir = cmStrCat(target->GetName(), ".dir");
2224 }
2225 return dir;
2226}
2227
2228static bool cmLVS7G_IsFAT(char const* dir)
2229{

Callers

nothing calls this directly

Calls 4

cmStrCatFunction · 0.70
GetNameMethod · 0.45

Tested by

no test coverage detected