VS10: Write header-only files in correct xml element (#11925)

This commit is contained in:
David Cole 2011-05-23 17:30:23 -04:00
parent cac769f3a7
commit a6b52bd8ef
1 changed files with 5 additions and 5 deletions

View File

@ -455,7 +455,11 @@ void cmVisualStudio10TargetGenerator::WriteGroups()
{
lang = "None";
}
if(lang[0] == 'C')
if(header)
{
headers.push_back(sf);
}
else if(lang[0] == 'C')
{
clCompile.push_back(sf);
}
@ -467,10 +471,6 @@ void cmVisualStudio10TargetGenerator::WriteGroups()
{
customBuild.push_back(sf);
}
else if(header)
{
headers.push_back(sf);
}
else if(ext == "idl")
{
idls.push_back(sf);