Add missing files to VS projects.

Part of fixing ticket #2101.
This commit is contained in:
Kimmo Varis 2010-10-16 23:54:54 +03:00
parent 28e40cb9b0
commit 00e5ca2299
6 changed files with 52 additions and 0 deletions

View File

@ -220,6 +220,10 @@
RelativePath="..\lib\checkother.cpp"
>
</File>
<File
RelativePath="..\lib\checkpostfixoperator.cpp"
>
</File>
<File
RelativePath="..\lib\checkstl.cpp"
>
@ -334,6 +338,10 @@
RelativePath="..\lib\checkother.h"
>
</File>
<File
RelativePath="..\lib\checkpostfixoperator.h"
>
</File>
<File
RelativePath="..\lib\checkstl.h"
>

View File

@ -129,6 +129,7 @@
<ClCompile Include="..\lib\checkexceptionsafety.cpp" />
<ClCompile Include="..\lib\checkmemoryleak.cpp" />
<ClCompile Include="..\lib\checkother.cpp" />
<ClCompile Include="..\lib\checkpostfixoperator.cpp" />
<ClCompile Include="..\lib\checkstl.cpp" />
<ClCompile Include="..\lib\checkunusedfunctions.cpp" />
<ClCompile Include="..\lib\cppcheck.cpp" />
@ -156,6 +157,7 @@
<ClInclude Include="..\lib\checkexceptionsafety.h" />
<ClInclude Include="..\lib\checkmemoryleak.h" />
<ClInclude Include="..\lib\checkother.h" />
<ClInclude Include="..\lib\checkpostfixoperator.h" />
<ClInclude Include="..\lib\checkstl.h" />
<ClInclude Include="..\lib\checkunusedfunctions.h" />
<ClInclude Include="..\lib\classinfo.h" />

View File

@ -83,6 +83,9 @@
<ClCompile Include="cmdlineparser.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\lib\checkpostfixoperator.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="resource.h">
@ -157,6 +160,9 @@
<ClInclude Include="cmdlineparser.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\lib\checkpostfixoperator.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="cppcheck.rc" />

View File

@ -218,6 +218,10 @@
RelativePath="..\lib\checkother.cpp"
>
</File>
<File
RelativePath="..\lib\checkpostfixoperator.cpp"
>
</File>
<File
RelativePath="..\lib\checkstl.cpp"
>
@ -334,6 +338,10 @@
RelativePath=".\testother.cpp"
>
</File>
<File
RelativePath=".\testpostfixoperator.cpp"
>
</File>
<File
RelativePath=".\testpreprocessor.cpp"
>
@ -452,6 +460,10 @@
RelativePath="..\lib\checkother.h"
>
</File>
<File
RelativePath="..\lib\checkpostfixoperator.h"
>
</File>
<File
RelativePath="..\lib\checkstl.h"
>

View File

@ -128,6 +128,7 @@
<ClCompile Include="..\lib\checkmemoryleak.cpp" />
<ClCompile Include="..\lib\checkobsoletefunctions.cpp" />
<ClCompile Include="..\lib\checkother.cpp" />
<ClCompile Include="..\lib\checkpostfixoperator.cpp" />
<ClCompile Include="..\lib\checkstl.cpp" />
<ClCompile Include="..\lib\checkunusedfunctions.cpp" />
<ClCompile Include="..\lib\cppcheck.cpp" />
@ -142,6 +143,7 @@
<ClCompile Include="..\lib\timer.cpp" />
<ClCompile Include="..\lib\token.cpp" />
<ClCompile Include="..\lib\tokenize.cpp" />
<ClCompile Include="options.cpp" />
<ClCompile Include="testautovariables.cpp" />
<ClCompile Include="testbufferoverrun.cpp" />
<ClCompile Include="testcharvar.cpp" />
@ -157,6 +159,7 @@
<ClCompile Include="testmemleak.cpp" />
<ClCompile Include="testobsoletefunctions.cpp" />
<ClCompile Include="testother.cpp" />
<ClCompile Include="testpostfixoperator.cpp" />
<ClCompile Include="testpreprocessor.cpp" />
<ClCompile Include="testrunner.cpp" />
<ClCompile Include="testsimplifytokens.cpp" />
@ -181,6 +184,7 @@
<ClInclude Include="..\lib\checkmemoryleak.h" />
<ClInclude Include="..\lib\checkobsoletefunctions.h" />
<ClInclude Include="..\lib\checkother.h" />
<ClInclude Include="..\lib\checkpostfixoperator.h" />
<ClInclude Include="..\lib\checkstl.h" />
<ClInclude Include="..\lib\checkunusedfunctions.h" />
<ClInclude Include="..\lib\classinfo.h" />
@ -196,6 +200,8 @@
<ClInclude Include="..\lib\timer.h" />
<ClInclude Include="..\lib\token.h" />
<ClInclude Include="..\lib\tokenize.h" />
<ClInclude Include="options.h" />
<ClInclude Include="redirect.h" />
<ClInclude Include="testsuite.h" />
<ClInclude Include="tinyxml\tinyxml.h" />
</ItemGroup>

View File

@ -161,6 +161,15 @@
<ClCompile Include="..\lib\checkobsoletefunctions.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\lib\checkpostfixoperator.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="testpostfixoperator.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="options.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="testsuite.h">
@ -241,5 +250,14 @@
<ClInclude Include="..\lib\checkobsoletefunctions.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\lib\checkpostfixoperator.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="options.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="redirect.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>