diff options
author | George Hazan <ghazan@miranda.im> | 2019-12-26 17:48:32 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-12-26 17:48:32 +0300 |
commit | 8d1513ec000a6d0a74e95134612b5ea726ff5d83 (patch) | |
tree | 6e25ea79bd29ae9208fe6e40f8797311a8467fca /build | |
parent | 8adeaba742faf26339786d0a92e7f295911cd30b (diff) |
added default filters (seems to work in VS2019)
Diffstat (limited to 'build')
-rw-r--r-- | build/vc.common/common.filters | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build/vc.common/common.filters b/build/vc.common/common.filters index db5ca7471c..abd96b97ab 100644 --- a/build/vc.common/common.filters +++ b/build/vc.common/common.filters @@ -14,4 +14,18 @@ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
</Filter>
</ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="src\*.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ <ClCompile Include="src\*.cpp;src\*.cxx">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ResourceCompile Include="res\*.rc">
+ <Filter>Resource Files</Filter>
+ </ResourceCompile>
+ <None Include="res\*.ico;res\*.bmp;res\*.cur">
+ <Filter>Resource Files</Filter>
+ </None>
+ </ItemGroup>
</Project>
\ No newline at end of file |