mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:46:13 +00:00
[win32k]
- Fix detection of file type while generating vcxproj files svn path=/trunk/; revision=47523
This commit is contained in:
parent
4f491e282e
commit
40ff1fac4b
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ VCXProjMaker::_generate_item_group (std::vector<std::string> files)
|
||||||
|
|
||||||
for( i = 0; i<files.size(); i++)
|
for( i = 0; i<files.size(); i++)
|
||||||
{
|
{
|
||||||
std::string extension = GetExtension(files[i]);
|
std::string extension = ToLower(GetExtension(files[i]));
|
||||||
|
|
||||||
if( extension == ".c" || extension == ".cpp")
|
if( extension == ".c" || extension == ".cpp")
|
||||||
fprintf ( OUT, "\t\t<ClCompile Include=\"%s\" />\r\n", files[i].c_str());
|
fprintf ( OUT, "\t\t<ClCompile Include=\"%s\" />\r\n", files[i].c_str());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue