Merge topic 'fix-11925-vcxproj-filters-mismatch'

a6b52bd VS10: Write header-only files in correct xml element (#11925)
This commit is contained in:
Brad King 2011-05-24 14:34:56 -04:00 committed by CMake Topic Stage
commit c5e00bf0b2
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);