mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-28 11:48:36 -06:00
cmGeneratorTarget: query the local generator for the target directory
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user