summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBen McMorran <ben.mcmorran@gmail.com>2017-10-20 03:38:10 -0700
committerGeorge Hazan <ghazan@miranda.im>2017-10-20 13:38:10 +0300
commit96c1531b76259c81fa14c85fb6fa98222ac5b94e (patch)
treefb08f0e225019eb27afad3adbba23ce766614f36 /build
parentd34945e300b00e33d79c54b5b1e2acd005394a13 (diff)
Fix filtering for Visual Studio 2017 (#1006)
Diffstat (limited to 'build')
-rw-r--r--build/vc.common/common.filters8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/vc.common/common.filters b/build/vc.common/common.filters
index 1af5b5334c..5e19be3a01 100644
--- a/build/vc.common/common.filters
+++ b/build/vc.common/common.filters
@@ -16,16 +16,16 @@
</ItemGroup>
<ItemGroup>
- <ClCompile Include="*.cpp">
+ <ClCompile Include="**\*.cpp">
<Filter>Source Files</Filter>
</ClCompile>
- <ClInclude Include="*.h;*.hpp">
+ <ClInclude Include="**\*.h;**\*.hpp">
<Filter>Header Files</Filter>
</ClInclude>
- <ResourceCompile Include="*.rc">
+ <ResourceCompile Include="**\*.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
- <None Include="*.def">
+ <None Include="**\*.def">
<Filter>Source Files</Filter>
</None>
</ItemGroup>