Browse Source

ENH: fix spaces in path for xcode

pull/1/head
Bill Hoffman 20 years ago
parent
commit
71505ff2d2
  1. 3
      Source/cmGlobalXCodeGenerator.cxx

3
Source/cmGlobalXCodeGenerator.cxx

@ -1380,8 +1380,7 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
{
// Convert to a path for the native build tool.
cmSystemTools::ConvertToUnixSlashes(install_name_dir);
install_name_dir =
this->XCodeEscapePath(install_name_dir.c_str());
// do not escape spaces on this since it is only a single path
}
}
buildSettings->AddAttribute("INSTALL_PATH",

Loading…
Cancel
Save