Skip to content

Commit 8bed91b

Browse files
committed
Add pugixml project file
Also there's x64 platform spawned by Visual Studio
1 parent 0dbc011 commit 8bed91b

File tree

2 files changed

+869
-0
lines changed

2 files changed

+869
-0
lines changed
Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<PropertyGroup Label="Globals">
22+
<ProjectGuid>{07CF01C0-B887-499D-AD9C-799CB6A9FE64}</ProjectGuid>
23+
<Keyword>Win32Proj</Keyword>
24+
<RootNamespace>pugixml</RootNamespace>
25+
</PropertyGroup>
26+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
28+
<ConfigurationType>StaticLibrary</ConfigurationType>
29+
<UseDebugLibraries>true</UseDebugLibraries>
30+
<PlatformToolset>v141</PlatformToolset>
31+
<CharacterSet>Unicode</CharacterSet>
32+
</PropertyGroup>
33+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
34+
<ConfigurationType>StaticLibrary</ConfigurationType>
35+
<UseDebugLibraries>false</UseDebugLibraries>
36+
<PlatformToolset>v141</PlatformToolset>
37+
<WholeProgramOptimization>true</WholeProgramOptimization>
38+
<CharacterSet>Unicode</CharacterSet>
39+
</PropertyGroup>
40+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
41+
<ConfigurationType>StaticLibrary</ConfigurationType>
42+
<UseDebugLibraries>true</UseDebugLibraries>
43+
<PlatformToolset>v141</PlatformToolset>
44+
<CharacterSet>Unicode</CharacterSet>
45+
</PropertyGroup>
46+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
47+
<ConfigurationType>StaticLibrary</ConfigurationType>
48+
<UseDebugLibraries>false</UseDebugLibraries>
49+
<PlatformToolset>v141</PlatformToolset>
50+
<WholeProgramOptimization>true</WholeProgramOptimization>
51+
<CharacterSet>Unicode</CharacterSet>
52+
</PropertyGroup>
53+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
54+
<ImportGroup Label="ExtensionSettings">
55+
</ImportGroup>
56+
<ImportGroup Label="Shared">
57+
</ImportGroup>
58+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
59+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
60+
<Import Project="..\src\Common.props" />
61+
</ImportGroup>
62+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
63+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64+
<Import Project="..\src\Common.props" />
65+
</ImportGroup>
66+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
67+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
68+
<Import Project="..\src\Common.props" />
69+
</ImportGroup>
70+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
71+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
72+
<Import Project="..\src\Common.props" />
73+
</ImportGroup>
74+
<PropertyGroup Label="UserMacros" />
75+
<PropertyGroup>
76+
<TargetName>pugixml</TargetName>
77+
</PropertyGroup>
78+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
79+
<ClCompile>
80+
<PrecompiledHeader>
81+
</PrecompiledHeader>
82+
<WarningLevel>Level3</WarningLevel>
83+
<Optimization>Disabled</Optimization>
84+
<PreprocessorDefinitions>WIN32;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
85+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
86+
<MinimalRebuild>true</MinimalRebuild>
87+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
88+
<StringPooling>false</StringPooling>
89+
<FunctionLevelLinking>true</FunctionLevelLinking>
90+
<FloatingPointModel>Precise</FloatingPointModel>
91+
<RuntimeTypeInfo>true</RuntimeTypeInfo>
92+
</ClCompile>
93+
<Link>
94+
<SubSystem>Windows</SubSystem>
95+
<GenerateDebugInformation>true</GenerateDebugInformation>
96+
</Link>
97+
</ItemDefinitionGroup>
98+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
99+
<ClCompile>
100+
<PrecompiledHeader>
101+
</PrecompiledHeader>
102+
<WarningLevel>Level3</WarningLevel>
103+
<Optimization>Disabled</Optimization>
104+
<PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
105+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
106+
<MinimalRebuild>true</MinimalRebuild>
107+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
108+
<StringPooling>false</StringPooling>
109+
<FunctionLevelLinking>true</FunctionLevelLinking>
110+
<FloatingPointModel>Precise</FloatingPointModel>
111+
<RuntimeTypeInfo>true</RuntimeTypeInfo>
112+
</ClCompile>
113+
<Link>
114+
<SubSystem>Windows</SubSystem>
115+
<GenerateDebugInformation>true</GenerateDebugInformation>
116+
</Link>
117+
</ItemDefinitionGroup>
118+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
119+
<ClCompile>
120+
<WarningLevel>Level3</WarningLevel>
121+
<PrecompiledHeader>
122+
</PrecompiledHeader>
123+
<Optimization>MaxSpeed</Optimization>
124+
<FunctionLevelLinking>false</FunctionLevelLinking>
125+
<IntrinsicFunctions>true</IntrinsicFunctions>
126+
<PreprocessorDefinitions>WIN32;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
127+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
128+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
129+
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
130+
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
131+
<OmitFramePointers>true</OmitFramePointers>
132+
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
133+
<StringPooling>true</StringPooling>
134+
<RuntimeTypeInfo>true</RuntimeTypeInfo>
135+
</ClCompile>
136+
<Link>
137+
<SubSystem>Windows</SubSystem>
138+
<GenerateDebugInformation>true</GenerateDebugInformation>
139+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
140+
<OptimizeReferences>true</OptimizeReferences>
141+
</Link>
142+
</ItemDefinitionGroup>
143+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
144+
<ClCompile>
145+
<WarningLevel>Level3</WarningLevel>
146+
<PrecompiledHeader>
147+
</PrecompiledHeader>
148+
<Optimization>MaxSpeed</Optimization>
149+
<FunctionLevelLinking>false</FunctionLevelLinking>
150+
<IntrinsicFunctions>true</IntrinsicFunctions>
151+
<PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
152+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
153+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
154+
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
155+
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
156+
<OmitFramePointers>true</OmitFramePointers>
157+
<EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
158+
<StringPooling>true</StringPooling>
159+
<RuntimeTypeInfo>true</RuntimeTypeInfo>
160+
</ClCompile>
161+
<Link>
162+
<SubSystem>Windows</SubSystem>
163+
<GenerateDebugInformation>true</GenerateDebugInformation>
164+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
165+
<OptimizeReferences>true</OptimizeReferences>
166+
</Link>
167+
</ItemDefinitionGroup>
168+
<ItemGroup>
169+
<ClInclude Include="pugixml\src\pugiconfig.hpp" />
170+
<ClInclude Include="pugixml\src\pugixml.hpp" />
171+
</ItemGroup>
172+
<ItemGroup>
173+
<ClCompile Include="pugixml\src\pugixml.cpp" />
174+
</ItemGroup>
175+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
176+
<ImportGroup Label="ExtensionTargets">
177+
</ImportGroup>
178+
</Project>

0 commit comments

Comments
 (0)