blob: c7e9200405daaf2c43ae99ac757e457d283299ad [file] [log] [blame]
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +00001<?xml version="1.0" encoding="Windows-1252"?>
2<VisualStudioProject
3 ProjectType="Visual C++"
4 Version="8.00"
5 Name="clangSema"
6 ProjectGUID="{4727E8B7-AA99-41C9-AB09-A8A862595DB7}"
7 RootNamespace="clangSema"
8 Keyword="Win32Proj"
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="4"
23 CharacterSet="2"
24 >
25 <Tool
26 Name="VCPreBuildEventTool"
27 />
28 <Tool
29 Name="VCCustomBuildTool"
30 />
31 <Tool
32 Name="VCXMLDataGeneratorTool"
33 />
34 <Tool
35 Name="VCWebServiceProxyGeneratorTool"
36 />
37 <Tool
38 Name="VCMIDLTool"
39 />
40 <Tool
41 Name="VCCLCompilerTool"
42 Optimization="0"
43 AdditionalIncludeDirectories="..\..\include;..\..\..\..\include;..\..\..\..\win32"
Hartmut Kaiser1c93c4e2007-11-07 19:34:40 +000044 PreprocessorDefinitions="WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;__STDC_LIMIT_MACROS"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +000045 MinimalRebuild="true"
46 BasicRuntimeChecks="3"
47 RuntimeLibrary="3"
48 UsePrecompiledHeader="0"
49 ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
50 WarningLevel="3"
51 Detect64BitPortabilityProblems="false"
52 DebugInformationFormat="3"
53 DisableSpecificWarnings="4146"
54 />
55 <Tool
56 Name="VCManagedResourceCompilerTool"
57 />
58 <Tool
59 Name="VCResourceCompilerTool"
60 />
61 <Tool
62 Name="VCPreLinkEventTool"
63 />
64 <Tool
65 Name="VCLibrarianTool"
66 />
67 <Tool
68 Name="VCALinkTool"
69 />
70 <Tool
71 Name="VCXDCMakeTool"
72 />
73 <Tool
74 Name="VCBscMakeTool"
75 />
76 <Tool
77 Name="VCFxCopTool"
78 />
79 <Tool
80 Name="VCPostBuildEventTool"
81 />
82 </Configuration>
83 <Configuration
84 Name="Release|Win32"
85 OutputDirectory="..\Release"
86 IntermediateDirectory="Release"
87 ConfigurationType="4"
88 CharacterSet="2"
89 WholeProgramOptimization="1"
90 >
91 <Tool
92 Name="VCPreBuildEventTool"
93 />
94 <Tool
95 Name="VCCustomBuildTool"
96 />
97 <Tool
98 Name="VCXMLDataGeneratorTool"
99 />
100 <Tool
101 Name="VCWebServiceProxyGeneratorTool"
102 />
103 <Tool
104 Name="VCMIDLTool"
105 />
106 <Tool
107 Name="VCCLCompilerTool"
108 AdditionalIncludeDirectories="..\..\include;..\..\..\..\include;..\..\..\..\win32"
Hartmut Kaiser1c93c4e2007-11-07 19:34:40 +0000109 PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_WARNINGS;__STDC_LIMIT_MACROS"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000110 RuntimeLibrary="2"
111 UsePrecompiledHeader="0"
112 ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
113 WarningLevel="3"
114 Detect64BitPortabilityProblems="false"
115 DebugInformationFormat="3"
116 DisableSpecificWarnings="4146"
117 />
118 <Tool
119 Name="VCManagedResourceCompilerTool"
120 />
121 <Tool
122 Name="VCResourceCompilerTool"
123 />
124 <Tool
125 Name="VCPreLinkEventTool"
126 />
127 <Tool
128 Name="VCLibrarianTool"
129 />
130 <Tool
131 Name="VCALinkTool"
132 />
133 <Tool
134 Name="VCXDCMakeTool"
135 />
136 <Tool
137 Name="VCBscMakeTool"
138 />
139 <Tool
140 Name="VCFxCopTool"
141 />
142 <Tool
143 Name="VCPostBuildEventTool"
144 />
145 </Configuration>
146 </Configurations>
147 <References>
148 </References>
149 <Files>
150 <Filter
151 Name="Source Files"
152 Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
153 UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
154 >
155 <File
Steve Naroff962d3262008-04-17 23:51:38 +0000156 RelativePath="..\..\lib\Sema\IdentifierResolver.cpp"
157 >
158 </File>
159 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000160 RelativePath="..\..\lib\Sema\ParseAST.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000161 >
162 </File>
163 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000164 RelativePath="..\..\lib\Sema\Sema.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000165 >
166 </File>
167 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000168 RelativePath="..\..\lib\Sema\SemaChecking.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000169 >
170 </File>
171 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000172 RelativePath="..\..\lib\Sema\SemaDecl.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000173 >
174 </File>
175 <File
Steve Naroff962d3262008-04-17 23:51:38 +0000176 RelativePath="..\..\lib\Sema\SemaDeclCXX.cpp"
177 >
178 </File>
179 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000180 RelativePath="..\..\lib\Sema\SemaDeclObjC.cpp"
Steve Narofff34729a2008-03-05 22:16:33 +0000181 >
182 </File>
183 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000184 RelativePath="..\..\lib\Sema\SemaExpr.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000185 >
186 </File>
187 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000188 RelativePath="..\..\lib\Sema\SemaExprCXX.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000189 >
190 </File>
191 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000192 RelativePath="..\..\lib\Sema\SemaExprObjC.cpp"
Steve Narofff34729a2008-03-05 22:16:33 +0000193 >
194 </File>
195 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000196 RelativePath="..\..\lib\Sema\SemaStmt.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000197 >
198 </File>
199 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000200 RelativePath="..\..\lib\Sema\SemaType.cpp"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000201 >
202 </File>
203 </Filter>
204 <Filter
205 Name="Header Files"
206 Filter="h;hpp;hxx;hm;inl;inc;xsd"
207 UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
208 >
209 <File
210 RelativePath="..\..\include\clang\Sema\ASTStreamer.h"
211 >
212 </File>
213 <File
Ted Kremenekf81eac62008-03-17 21:21:04 +0000214 RelativePath="..\..\lib\Sema\Sema.h"
Hartmut Kaiserfe0a8eb2007-09-04 19:06:30 +0000215 >
216 </File>
217 </Filter>
218 </Files>
219 <Globals>
220 </Globals>
221</VisualStudioProject>