Xcode: Fix nested source group handling (#12943)

Teach the code path for nested sources build the group map key in the
same way as non-nested code path does.
This commit is contained in:
Alexander Chehovsky 2013-02-16 14:23:20 +01:00 committed by Brad King
parent 0ad58af444
commit 0816caecac
1 changed files with 1 additions and 1 deletions

View File

@ -2914,7 +2914,7 @@ cmXCodeObject* cmGlobalXCodeGenerator
{
std::vector<std::string> folders =
cmSystemTools::tokenize(sg->GetFullName(), "\\");
cmStdString curr_folder = cmtarget.GetName();
cmStdString curr_folder = target;
curr_folder += "/";
for(std::vector<std::string>::size_type i = 0; i < folders.size();i++)
{