yamlcpp.vcproj 7.99 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
	ProjectType="Visual C++"
	Version="9.00"
	Name="yamlcpp"
	ProjectGUID="{3104AB4E-CD31-4F47-95E9-0E8D9374E15D}"
	RootNamespace="yamlcpp"
	Keyword="Win32Proj"
	TargetFrameworkVersion="196613"
	>
	<Platforms>
		<Platform
			Name="Win32"
		/>
	</Platforms>
	<ToolFiles>
	</ToolFiles>
	<Configurations>
		<Configuration
			Name="Debug|Win32"
			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
			IntermediateDirectory="$(ConfigurationName)"
			ConfigurationType="4"
			CharacterSet="1"
			>
			<Tool
				Name="VCPreBuildEventTool"
			/>
			<Tool
				Name="VCCustomBuildTool"
			/>
			<Tool
				Name="VCXMLDataGeneratorTool"
			/>
			<Tool
				Name="VCWebServiceProxyGeneratorTool"
			/>
			<Tool
				Name="VCMIDLTool"
			/>
			<Tool
				Name="VCCLCompilerTool"
43
				AdditionalOptions="/D_SCL_SECURE_NO_WARNINGS"
44
				Optimization="0"
45
				AdditionalIncludeDirectories="include"
46
47
48
49
50
				PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
				MinimalRebuild="true"
				BasicRuntimeChecks="3"
				RuntimeLibrary="3"
				UsePrecompiledHeader="0"
51
				WarningLevel="4"
jbeder's avatar
jbeder committed
52
				DebugInformationFormat="3"
53
				DisableSpecificWarnings="4127;4355"
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
			/>
			<Tool
				Name="VCManagedResourceCompilerTool"
			/>
			<Tool
				Name="VCResourceCompilerTool"
			/>
			<Tool
				Name="VCPreLinkEventTool"
			/>
			<Tool
				Name="VCLibrarianTool"
				OutputFile="lib\$(ProjectName)d.lib"
			/>
			<Tool
				Name="VCALinkTool"
			/>
			<Tool
				Name="VCXDCMakeTool"
			/>
			<Tool
				Name="VCBscMakeTool"
			/>
			<Tool
				Name="VCFxCopTool"
			/>
			<Tool
				Name="VCPostBuildEventTool"
			/>
		</Configuration>
		<Configuration
			Name="Release|Win32"
			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
			IntermediateDirectory="$(ConfigurationName)"
			ConfigurationType="4"
			CharacterSet="1"
			WholeProgramOptimization="1"
			>
			<Tool
				Name="VCPreBuildEventTool"
			/>
			<Tool
				Name="VCCustomBuildTool"
			/>
			<Tool
				Name="VCXMLDataGeneratorTool"
			/>
			<Tool
				Name="VCWebServiceProxyGeneratorTool"
			/>
			<Tool
				Name="VCMIDLTool"
			/>
			<Tool
				Name="VCCLCompilerTool"
				Optimization="2"
				EnableIntrinsicFunctions="true"
111
				AdditionalIncludeDirectories="include"
112
113
114
115
				PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
				RuntimeLibrary="2"
				EnableFunctionLevelLinking="true"
				UsePrecompiledHeader="0"
116
				WarningLevel="4"
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
				DebugInformationFormat="3"
			/>
			<Tool
				Name="VCManagedResourceCompilerTool"
			/>
			<Tool
				Name="VCResourceCompilerTool"
			/>
			<Tool
				Name="VCPreLinkEventTool"
			/>
			<Tool
				Name="VCLibrarianTool"
				OutputFile="lib\$(ProjectName).lib"
			/>
			<Tool
				Name="VCALinkTool"
			/>
			<Tool
				Name="VCXDCMakeTool"
			/>
			<Tool
				Name="VCBscMakeTool"
			/>
			<Tool
				Name="VCFxCopTool"
			/>
			<Tool
				Name="VCPostBuildEventTool"
			/>
		</Configuration>
	</Configurations>
	<References>
	</References>
	<Files>
		<Filter
			Name="Source Files"
			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
			>
			<Filter
				Name="Parser"
				>
				<File
					RelativePath=".\src\parser.cpp"
					>
				</File>
				<File
					RelativePath=".\src\parserstate.cpp"
					>
				</File>
			</Filter>
			<Filter
				Name="Representation"
				>
172
				<File
173
					RelativePath=".\src\aliascontent.cpp"
174
					>
175
				</File>
176
177
178
179
				<File
					RelativePath=".\src\conversion.cpp"
					>
				</File>
180
181
182
183
184
185
186
187
188
189
190
191
				<File
					RelativePath=".\src\iterator.cpp"
					>
				</File>
				<File
					RelativePath=".\src\map.cpp"
					>
				</File>
				<File
					RelativePath=".\src\node.cpp"
					>
				</File>
192
193
194
195
				<File
					RelativePath=".\src\null.cpp"
					>
				</File>
196
197
198
199
200
201
202
203
				<File
					RelativePath=".\src\scalar.cpp"
					>
				</File>
				<File
					RelativePath=".\src\sequence.cpp"
					>
				</File>
204
205
206
207
				<File
					RelativePath=".\src\tag.cpp"
					>
				</File>
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
			</Filter>
			<Filter
				Name="Scanner"
				>
				<File
					RelativePath=".\src\exp.cpp"
					>
				</File>
				<File
					RelativePath=".\src\regex.cpp"
					>
				</File>
				<File
					RelativePath=".\src\scanner.cpp"
					>
				</File>
				<File
					RelativePath=".\src\scanscalar.cpp"
					>
				</File>
228
229
230
231
				<File
					RelativePath=".\src\scantag.cpp"
					>
				</File>
232
233
234
235
236
237
238
239
240
241
242
243
244
				<File
					RelativePath=".\src\scantoken.cpp"
					>
				</File>
				<File
					RelativePath=".\src\simplekey.cpp"
					>
				</File>
				<File
					RelativePath=".\src\stream.cpp"
					>
				</File>
			</Filter>
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
			<Filter
				Name="Emitter"
				>
				<File
					RelativePath=".\src\emitter.cpp"
					>
				</File>
				<File
					RelativePath=".\src\emitterstate.cpp"
					>
				</File>
				<File
					RelativePath=".\src\emitterutils.cpp"
					>
				</File>
				<File
					RelativePath=".\src\ostream.cpp"
					>
				</File>
			</Filter>
265
266
267
268
269
270
		</Filter>
		<Filter
			Name="Header Files"
			Filter="h;hpp;hxx;hm;inl;inc;xsd"
			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
			>
271
272
273
274
			<File
				RelativePath=".\include\crt.h"
				>
			</File>
275
276
277
278
			<File
				RelativePath=".\include\exceptions.h"
				>
			</File>
279
280
281
282
283
284
285
286
			<File
				RelativePath=".\src\indentation.h"
				>
			</File>
			<File
				RelativePath=".\include\noncopyable.h"
				>
			</File>
287
288
289
290
			<File
				RelativePath=".\include\yaml.h"
				>
			</File>
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
			<Filter
				Name="Parser"
				>
				<File
					RelativePath=".\include\parser.h"
					>
				</File>
				<File
					RelativePath=".\include\parserstate.h"
					>
				</File>
			</Filter>
			<Filter
				Name="Representation"
				>
306
				<File
307
					RelativePath=".\src\aliascontent.h"
308
309
					>
				</File>
310
311
312
313
				<File
					RelativePath=".\src\content.h"
					>
				</File>
314
315
316
317
				<File
					RelativePath=".\include\conversion.h"
					>
				</File>
318
				<File
319
320
321
322
323
324
325
326
327
					RelativePath=".\include\iterator.h"
					>
				</File>
				<File
					RelativePath=".\src\iterpriv.h"
					>
				</File>
				<File
					RelativePath=".\src\ltnode.h"
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
					>
				</File>
				<File
					RelativePath=".\src\map.h"
					>
				</File>
				<File
					RelativePath=".\include\node.h"
					>
				</File>
				<File
					RelativePath=".\src\scalar.h"
					>
				</File>
				<File
					RelativePath=".\src\sequence.h"
					>
				</File>
346
347
348
349
				<File
					RelativePath=".\src\tag.h"
					>
				</File>
350
351
352
353
354
355
356
357
358
359
360
361
			</Filter>
			<Filter
				Name="Scanner"
				>
				<File
					RelativePath=".\src\exp.h"
					>
				</File>
				<File
					RelativePath=".\src\regex.h"
					>
				</File>
362
363
364
365
				<File
					RelativePath=".\src\regeximpl.h"
					>
				</File>
366
367
368
369
370
371
372
373
				<File
					RelativePath=".\src\scanner.h"
					>
				</File>
				<File
					RelativePath=".\src\scanscalar.h"
					>
				</File>
374
375
376
377
				<File
					RelativePath=".\src\scantag.h"
					>
				</File>
378
379
380
381
				<File
					RelativePath=".\src\stream.h"
					>
				</File>
382
383
384
385
				<File
					RelativePath=".\src\streamcharsource.h"
					>
				</File>
386
387
388
389
				<File
					RelativePath=".\src\stringsource.h"
					>
				</File>
390
391
392
393
394
				<File
					RelativePath=".\src\token.h"
					>
				</File>
			</Filter>
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
			<Filter
				Name="Emitter"
				>
				<File
					RelativePath=".\include\emitter.h"
					>
				</File>
				<File
					RelativePath=".\include\emittermanip.h"
					>
				</File>
				<File
					RelativePath=".\src\emitterstate.h"
					>
				</File>
				<File
					RelativePath=".\src\emitterutils.h"
					>
				</File>
				<File
					RelativePath=".\include\ostream.h"
					>
				</File>
				<File
					RelativePath=".\include\stlemitter.h"
					>
				</File>
			</Filter>
423
424
425
426
427
428
429
430
431
432
433
		</Filter>
		<Filter
			Name="Resource Files"
			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
			>
		</Filter>
	</Files>
	<Globals>
	</Globals>
</VisualStudioProject>