mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
cmComputeLinkInformation: Fix misspelt private variable name
This commit is contained in:
@@ -1336,8 +1336,8 @@ void cmComputeLinkInformation::ComputeFrameworkInfo()
|
||||
"CMAKE_", this->LinkLanguage, "_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES");
|
||||
this->Makefile->GetDefExpandList(implicitDirVar, implicitDirVec);
|
||||
|
||||
this->FrameworkPathsEmmitted.insert(implicitDirVec.begin(),
|
||||
implicitDirVec.end());
|
||||
this->FrameworkPathsEmitted.insert(implicitDirVec.begin(),
|
||||
implicitDirVec.end());
|
||||
|
||||
// Regular expression to extract a framework path and name.
|
||||
this->SplitFramework.compile("(.*)/(.*)\\.framework$");
|
||||
@@ -1345,7 +1345,7 @@ void cmComputeLinkInformation::ComputeFrameworkInfo()
|
||||
|
||||
void cmComputeLinkInformation::AddFrameworkPath(std::string const& p)
|
||||
{
|
||||
if (this->FrameworkPathsEmmitted.insert(p).second) {
|
||||
if (this->FrameworkPathsEmitted.insert(p).second) {
|
||||
this->FrameworkPaths.push_back(p);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -164,7 +164,7 @@ private:
|
||||
// Framework info.
|
||||
void ComputeFrameworkInfo();
|
||||
void AddFrameworkPath(std::string const& p);
|
||||
std::set<std::string> FrameworkPathsEmmitted;
|
||||
std::set<std::string> FrameworkPathsEmitted;
|
||||
cmsys::RegularExpression SplitFramework;
|
||||
|
||||
// Linker search path computation.
|
||||
|
||||
Reference in New Issue
Block a user