cmGeneratorTarget: query the local generator for the target directory

This commit is contained in:
John Parent
2025-05-21 19:05:43 +02:00
committed by Ben Boeckel
parent ff5d7bc301
commit 36f85ee0cc

View File

@@ -5217,14 +5217,9 @@ bool cmGeneratorTarget::NeedImportLibraryName(std::string const& config) const
std::string cmGeneratorTarget::GetSupportDirectory() const
{
std::string dir = cmStrCat(this->LocalGenerator->GetCurrentBinaryDirectory(),
"/CMakeFiles/", this->GetName());
#if defined(__VMS)
dir += "_dir";
#else
dir += ".dir";
#endif
return dir;
cmLocalGenerator* lg = this->GetLocalGenerator();
return cmStrCat(lg->GetCurrentBinaryDirectory(), '/',
lg->GetTargetDirectory(this));
}
bool cmGeneratorTarget::IsLinkable() const