Skip to content

Commit 221517e

Browse files
author
Daniel Marjamäki
committed
Added Visual C++ 2008 Express solution and project files
1 parent c5b26d1 commit 221517e

2 files changed

Lines changed: 280 additions & 0 deletions

File tree

cppcheck.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 10.00
3+
# Visual C++ Express 2008
4+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cppcheck", "cppcheck.vcproj", "{ECA5D746-4926-48BA-A372-FC888498531F}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Win32 = Debug|Win32
9+
Release|Win32 = Release|Win32
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{ECA5D746-4926-48BA-A372-FC888498531F}.Debug|Win32.ActiveCfg = Debug|Win32
13+
{ECA5D746-4926-48BA-A372-FC888498531F}.Debug|Win32.Build.0 = Debug|Win32
14+
{ECA5D746-4926-48BA-A372-FC888498531F}.Release|Win32.ActiveCfg = Release|Win32
15+
{ECA5D746-4926-48BA-A372-FC888498531F}.Release|Win32.Build.0 = Release|Win32
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

cppcheck.vcproj

Lines changed: 260 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,260 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<VisualStudioProject
3+
ProjectType="Visual C++"
4+
Version="9,00"
5+
Name="cppcheck"
6+
ProjectGUID="{ECA5D746-4926-48BA-A372-FC888498531F}"
7+
Keyword="Win32Proj"
8+
TargetFrameworkVersion="0"
9+
>
10+
<Platforms>
11+
<Platform
12+
Name="Win32"
13+
/>
14+
</Platforms>
15+
<ToolFiles>
16+
</ToolFiles>
17+
<Configurations>
18+
<Configuration
19+
Name="Debug|Win32"
20+
OutputDirectory="Debug"
21+
IntermediateDirectory="Debug"
22+
ConfigurationType="1"
23+
>
24+
<Tool
25+
Name="VCPreBuildEventTool"
26+
/>
27+
<Tool
28+
Name="VCCustomBuildTool"
29+
/>
30+
<Tool
31+
Name="VCXMLDataGeneratorTool"
32+
/>
33+
<Tool
34+
Name="VCWebServiceProxyGeneratorTool"
35+
/>
36+
<Tool
37+
Name="VCMIDLTool"
38+
/>
39+
<Tool
40+
Name="VCCLCompilerTool"
41+
Optimization="0"
42+
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;"
43+
MinimalRebuild="true"
44+
BasicRuntimeChecks="3"
45+
RuntimeLibrary="3"
46+
UsePrecompiledHeader="0"
47+
WarningLevel="3"
48+
Detect64BitPortabilityProblems="false"
49+
DebugInformationFormat="4"
50+
/>
51+
<Tool
52+
Name="VCManagedResourceCompilerTool"
53+
/>
54+
<Tool
55+
Name="VCResourceCompilerTool"
56+
/>
57+
<Tool
58+
Name="VCPreLinkEventTool"
59+
/>
60+
<Tool
61+
Name="VCLinkerTool"
62+
LinkIncremental="2"
63+
GenerateDebugInformation="true"
64+
SubSystem="1"
65+
TargetMachine="1"
66+
/>
67+
<Tool
68+
Name="VCALinkTool"
69+
/>
70+
<Tool
71+
Name="VCManifestTool"
72+
/>
73+
<Tool
74+
Name="VCXDCMakeTool"
75+
/>
76+
<Tool
77+
Name="VCBscMakeTool"
78+
/>
79+
<Tool
80+
Name="VCFxCopTool"
81+
/>
82+
<Tool
83+
Name="VCAppVerifierTool"
84+
/>
85+
<Tool
86+
Name="VCPostBuildEventTool"
87+
/>
88+
</Configuration>
89+
<Configuration
90+
Name="Release|Win32"
91+
OutputDirectory="Release"
92+
IntermediateDirectory="Release"
93+
ConfigurationType="1"
94+
>
95+
<Tool
96+
Name="VCPreBuildEventTool"
97+
/>
98+
<Tool
99+
Name="VCCustomBuildTool"
100+
/>
101+
<Tool
102+
Name="VCXMLDataGeneratorTool"
103+
/>
104+
<Tool
105+
Name="VCWebServiceProxyGeneratorTool"
106+
/>
107+
<Tool
108+
Name="VCMIDLTool"
109+
/>
110+
<Tool
111+
Name="VCCLCompilerTool"
112+
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;"
113+
RuntimeLibrary="2"
114+
UsePrecompiledHeader="0"
115+
WarningLevel="3"
116+
Detect64BitPortabilityProblems="false"
117+
DebugInformationFormat="3"
118+
/>
119+
<Tool
120+
Name="VCManagedResourceCompilerTool"
121+
/>
122+
<Tool
123+
Name="VCResourceCompilerTool"
124+
/>
125+
<Tool
126+
Name="VCPreLinkEventTool"
127+
/>
128+
<Tool
129+
Name="VCLinkerTool"
130+
LinkIncremental="2"
131+
GenerateDebugInformation="true"
132+
SubSystem="1"
133+
OptimizeReferences="2"
134+
EnableCOMDATFolding="2"
135+
TargetMachine="1"
136+
/>
137+
<Tool
138+
Name="VCALinkTool"
139+
/>
140+
<Tool
141+
Name="VCManifestTool"
142+
/>
143+
<Tool
144+
Name="VCXDCMakeTool"
145+
/>
146+
<Tool
147+
Name="VCBscMakeTool"
148+
/>
149+
<Tool
150+
Name="VCFxCopTool"
151+
/>
152+
<Tool
153+
Name="VCAppVerifierTool"
154+
/>
155+
<Tool
156+
Name="VCPostBuildEventTool"
157+
/>
158+
</Configuration>
159+
</Configurations>
160+
<References>
161+
</References>
162+
<Files>
163+
<Filter
164+
Name="Header Files"
165+
Filter="h;hpp;hxx;hm;inl;inc;xsd"
166+
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
167+
>
168+
<File
169+
RelativePath=".\CheckBufferOverrun.h"
170+
>
171+
</File>
172+
<File
173+
RelativePath=".\CheckClass.h"
174+
>
175+
</File>
176+
<File
177+
RelativePath=".\CheckHeaders.h"
178+
>
179+
</File>
180+
<File
181+
RelativePath=".\CheckMemoryLeak.h"
182+
>
183+
</File>
184+
<File
185+
RelativePath=".\CheckOther.h"
186+
>
187+
</File>
188+
<File
189+
RelativePath=".\CommonCheck.h"
190+
>
191+
</File>
192+
<File
193+
RelativePath=".\FileLister.h"
194+
>
195+
</File>
196+
<File
197+
RelativePath=".\preprocessor.h"
198+
>
199+
</File>
200+
<File
201+
RelativePath=".\tokenize.h"
202+
>
203+
</File>
204+
</Filter>
205+
<Filter
206+
Name="Resource Files"
207+
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
208+
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
209+
>
210+
</Filter>
211+
<Filter
212+
Name="Source Files"
213+
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
214+
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
215+
>
216+
<File
217+
RelativePath=".\CheckBufferOverrun.cpp"
218+
>
219+
</File>
220+
<File
221+
RelativePath=".\CheckClass.cpp"
222+
>
223+
</File>
224+
<File
225+
RelativePath=".\CheckHeaders.cpp"
226+
>
227+
</File>
228+
<File
229+
RelativePath=".\CheckMemoryLeak.cpp"
230+
>
231+
</File>
232+
<File
233+
RelativePath=".\CheckOther.cpp"
234+
>
235+
</File>
236+
<File
237+
RelativePath=".\CommonCheck.cpp"
238+
>
239+
</File>
240+
<File
241+
RelativePath=".\FileLister.cpp"
242+
>
243+
</File>
244+
<File
245+
RelativePath=".\main.cpp"
246+
>
247+
</File>
248+
<File
249+
RelativePath=".\preprocessor.cpp"
250+
>
251+
</File>
252+
<File
253+
RelativePath=".\tokenize.cpp"
254+
>
255+
</File>
256+
</Filter>
257+
</Files>
258+
<Globals>
259+
</Globals>
260+
</VisualStudioProject>

0 commit comments

Comments
 (0)