diff options
author | Brad King <brad.king@kitware.com> | 2021-03-11 13:10:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-03-11 13:10:42 (GMT) |
commit | 460608274280e64e8791ba8cee62fbdcef4d59d9 (patch) | |
tree | f01a61a7db3037a00a26244abccdf139bcaf765a /Source | |
parent | f59a3e2148e5177933f7cf98a35d9955fffdb173 (diff) | |
parent | 4f9a71974e0d6e34c81fd8f55fce4118157e5559 (diff) | |
download | CMake-460608274280e64e8791ba8cee62fbdcef4d59d9.zip CMake-460608274280e64e8791ba8cee62fbdcef4d59d9.tar.gz CMake-460608274280e64e8791ba8cee62fbdcef4d59d9.tar.bz2 |
Merge topic 'xcode-framework-quoting' into release-3.20
4f9a71974e Xcode: Restore support for spaces in framework names
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5899
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 8ecebae..d6cc423 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -3695,7 +3695,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)); } |