summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-03-10 15:03:36 (GMT)
committerBrad King <brad.king@kitware.com>2021-03-10 15:03:36 (GMT)
commitb6cc9be00900dec8f7a99b85c1a4cf86b1aebdb2 (patch)
treee5137712e5458cfb8becab61db736d29ab30979a /Source/cmGlobalXCodeGenerator.cxx
parentbef1cc77effd833c75f6fb526055cba3df115059 (diff)
parent4f9a71974e0d6e34c81fd8f55fce4118157e5559 (diff)
downloadCMake-b6cc9be00900dec8f7a99b85c1a4cf86b1aebdb2.zip
CMake-b6cc9be00900dec8f7a99b85c1a4cf86b1aebdb2.tar.gz
CMake-b6cc9be00900dec8f7a99b85c1a4cf86b1aebdb2.tar.bz2
Merge branch 'backport-xcode-framework-quoting' into xcode-framework-quoting
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index cc075de..7dd1704 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -3696,7 +3696,7 @@ void cmGlobalXCodeGenerator::AddDependAndLinkInformation(cmXCodeObject* target)
// implicit search path, so we need it
libPaths.Add("-F " + this->XCodeEscapePath(fwDir));
}
- libPaths.Add("-framework " + fwName);
+ libPaths.Add("-framework " + this->XCodeEscapePath(fwName));
} else {
libPaths.Add(this->XCodeEscapePath(cleanPath));
}