Merge topic 'framework-with-space'

e74f374 Fix linking to OS X Frameworks named with spaces (#12550)
This commit is contained in:
David Cole 2011-11-08 14:43:18 -05:00 committed by CMake Topic Stage
commit a985a9e0f7
1 changed files with 3 additions and 2 deletions

View File

@ -1318,8 +1318,9 @@ void cmComputeLinkInformation::AddFrameworkItem(std::string const& item)
this->AddFrameworkPath(this->SplitFramework.match(1));
// Add the item using the -framework option.
std::string fw = "-framework ";
fw += this->SplitFramework.match(2);
this->Items.push_back(Item("-framework", false));
std::string fw = this->SplitFramework.match(2);
fw = this->LocalGenerator->EscapeForShell(fw.c_str());
this->Items.push_back(Item(fw, false));
}