Update VS2010 solution/project files.

This commit is contained in:
Kimmo Varis 2010-09-20 18:09:17 +03:00
parent 46b3a0f532
commit d0acc16506
4 changed files with 20 additions and 4 deletions

View File

@ -90,6 +90,7 @@
<ClCompile Include="checkclass.cpp" /> <ClCompile Include="checkclass.cpp" />
<ClCompile Include="checkexceptionsafety.cpp" /> <ClCompile Include="checkexceptionsafety.cpp" />
<ClCompile Include="checkmemoryleak.cpp" /> <ClCompile Include="checkmemoryleak.cpp" />
<ClCompile Include="checkobsoletefunctions.cpp" />
<ClCompile Include="checkother.cpp" /> <ClCompile Include="checkother.cpp" />
<ClCompile Include="checkstl.cpp" /> <ClCompile Include="checkstl.cpp" />
<ClCompile Include="checkunusedfunctions.cpp" /> <ClCompile Include="checkunusedfunctions.cpp" />
@ -113,6 +114,7 @@
<ClInclude Include="checkclass.h" /> <ClInclude Include="checkclass.h" />
<ClInclude Include="checkexceptionsafety.h" /> <ClInclude Include="checkexceptionsafety.h" />
<ClInclude Include="checkmemoryleak.h" /> <ClInclude Include="checkmemoryleak.h" />
<ClInclude Include="checkobsoletefunctions.h" />
<ClInclude Include="checkother.h" /> <ClInclude Include="checkother.h" />
<ClInclude Include="checkstl.h" /> <ClInclude Include="checkstl.h" />
<ClInclude Include="checkunusedfunctions.h" /> <ClInclude Include="checkunusedfunctions.h" />

View File

@ -71,6 +71,9 @@
<ClCompile Include="timer.cpp"> <ClCompile Include="timer.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="checkobsoletefunctions.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="check.h"> <ClInclude Include="check.h">
@ -139,5 +142,8 @@
<ClInclude Include="timer.h"> <ClInclude Include="timer.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="checkobsoletefunctions.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -126,6 +126,7 @@
<ClCompile Include="..\lib\checkclass.cpp" /> <ClCompile Include="..\lib\checkclass.cpp" />
<ClCompile Include="..\lib\checkexceptionsafety.cpp" /> <ClCompile Include="..\lib\checkexceptionsafety.cpp" />
<ClCompile Include="..\lib\checkmemoryleak.cpp" /> <ClCompile Include="..\lib\checkmemoryleak.cpp" />
<ClCompile Include="..\lib\checkobsoletefunctions.cpp" />
<ClCompile Include="..\lib\checkother.cpp" /> <ClCompile Include="..\lib\checkother.cpp" />
<ClCompile Include="..\lib\checkstl.cpp" /> <ClCompile Include="..\lib\checkstl.cpp" />
<ClCompile Include="..\lib\checkunusedfunctions.cpp" /> <ClCompile Include="..\lib\checkunusedfunctions.cpp" />
@ -154,9 +155,9 @@
<ClCompile Include="testincompletestatement.cpp" /> <ClCompile Include="testincompletestatement.cpp" />
<ClCompile Include="testmathlib.cpp" /> <ClCompile Include="testmathlib.cpp" />
<ClCompile Include="testmemleak.cpp" /> <ClCompile Include="testmemleak.cpp" />
<ClCompile Include="testobsoletefunctions.cpp" />
<ClCompile Include="testother.cpp" /> <ClCompile Include="testother.cpp" />
<ClCompile Include="testpreprocessor.cpp" /> <ClCompile Include="testpreprocessor.cpp" />
<ClCompile Include="testredundantif.cpp" />
<ClCompile Include="testrunner.cpp" /> <ClCompile Include="testrunner.cpp" />
<ClCompile Include="testsimplifytokens.cpp" /> <ClCompile Include="testsimplifytokens.cpp" />
<ClCompile Include="teststl.cpp" /> <ClCompile Include="teststl.cpp" />
@ -178,6 +179,7 @@
<ClInclude Include="..\lib\checkclass.h" /> <ClInclude Include="..\lib\checkclass.h" />
<ClInclude Include="..\lib\checkexceptionsafety.h" /> <ClInclude Include="..\lib\checkexceptionsafety.h" />
<ClInclude Include="..\lib\checkmemoryleak.h" /> <ClInclude Include="..\lib\checkmemoryleak.h" />
<ClInclude Include="..\lib\checkobsoletefunctions.h" />
<ClInclude Include="..\lib\checkother.h" /> <ClInclude Include="..\lib\checkother.h" />
<ClInclude Include="..\lib\checkstl.h" /> <ClInclude Include="..\lib\checkstl.h" />
<ClInclude Include="..\lib\checkunusedfunctions.h" /> <ClInclude Include="..\lib\checkunusedfunctions.h" />

View File

@ -53,9 +53,6 @@
<ClCompile Include="testpreprocessor.cpp"> <ClCompile Include="testpreprocessor.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="testredundantif.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="testrunner.cpp"> <ClCompile Include="testrunner.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
@ -158,6 +155,12 @@
<ClCompile Include="testcmdlineparser.cpp"> <ClCompile Include="testcmdlineparser.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="testobsoletefunctions.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\lib\checkobsoletefunctions.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="testsuite.h"> <ClInclude Include="testsuite.h">
@ -235,5 +238,8 @@
<ClInclude Include="..\cli\cmdlineparser.h"> <ClInclude Include="..\cli\cmdlineparser.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\lib\checkobsoletefunctions.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
</Project> </Project>