blob: 5503b6a5e9ad9cfdb7c98f5188ced3d92dc09ff4 [file] [log] [blame]
Brian Curtin401f9f32012-05-13 11:19:23 -05001<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <ItemGroup Label="ProjectConfigurations">
Paul Monson8a1657b2019-02-14 08:31:30 -08004 <ProjectConfiguration Include="Debug|ARM">
5 <Configuration>Debug</Configuration>
6 <Platform>ARM</Platform>
7 </ProjectConfiguration>
Brian Curtin401f9f32012-05-13 11:19:23 -05008 <ProjectConfiguration Include="Debug|Win32">
9 <Configuration>Debug</Configuration>
10 <Platform>Win32</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="Debug|x64">
13 <Configuration>Debug</Configuration>
14 <Platform>x64</Platform>
15 </ProjectConfiguration>
Paul Monson8a1657b2019-02-14 08:31:30 -080016 <ProjectConfiguration Include="PGInstrument|ARM">
17 <Configuration>PGInstrument</Configuration>
18 <Platform>ARM</Platform>
19 </ProjectConfiguration>
Brian Curtin401f9f32012-05-13 11:19:23 -050020 <ProjectConfiguration Include="PGInstrument|Win32">
21 <Configuration>PGInstrument</Configuration>
22 <Platform>Win32</Platform>
23 </ProjectConfiguration>
24 <ProjectConfiguration Include="PGInstrument|x64">
25 <Configuration>PGInstrument</Configuration>
26 <Platform>x64</Platform>
27 </ProjectConfiguration>
Paul Monson8a1657b2019-02-14 08:31:30 -080028 <ProjectConfiguration Include="PGUpdate|ARM">
29 <Configuration>PGUpdate</Configuration>
30 <Platform>ARM</Platform>
31 </ProjectConfiguration>
Brian Curtin401f9f32012-05-13 11:19:23 -050032 <ProjectConfiguration Include="PGUpdate|Win32">
33 <Configuration>PGUpdate</Configuration>
34 <Platform>Win32</Platform>
35 </ProjectConfiguration>
36 <ProjectConfiguration Include="PGUpdate|x64">
37 <Configuration>PGUpdate</Configuration>
38 <Platform>x64</Platform>
39 </ProjectConfiguration>
Paul Monson8a1657b2019-02-14 08:31:30 -080040 <ProjectConfiguration Include="Release|ARM">
41 <Configuration>Release</Configuration>
42 <Platform>ARM</Platform>
43 </ProjectConfiguration>
Brian Curtin401f9f32012-05-13 11:19:23 -050044 <ProjectConfiguration Include="Release|Win32">
45 <Configuration>Release</Configuration>
46 <Platform>Win32</Platform>
47 </ProjectConfiguration>
48 <ProjectConfiguration Include="Release|x64">
49 <Configuration>Release</Configuration>
50 <Platform>x64</Platform>
51 </ProjectConfiguration>
52 </ItemGroup>
53 <PropertyGroup Label="Globals">
Steve Dower65e4cb12014-11-22 12:54:57 -080054 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
Brian Curtin401f9f32012-05-13 11:19:23 -050055 <ProjectGuid>{D06B6426-4762-44CC-8BAD-D79052507F2F}</ProjectGuid>
56 <RootNamespace>pyexpat</RootNamespace>
Brian Curtin401f9f32012-05-13 11:19:23 -050057 </PropertyGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -080058 <Import Project="python.props" />
Brian Curtin401f9f32012-05-13 11:19:23 -050059 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
Steve Dower65e4cb12014-11-22 12:54:57 -080060 <PropertyGroup Label="Configuration">
Brian Curtin401f9f32012-05-13 11:19:23 -050061 <ConfigurationType>DynamicLibrary</ConfigurationType>
62 <CharacterSet>NotSet</CharacterSet>
63 </PropertyGroup>
64 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Steve Dower65e4cb12014-11-22 12:54:57 -080065 <PropertyGroup>
66 <TargetExt>.pyd</TargetExt>
67 </PropertyGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050068 <ImportGroup Label="ExtensionSettings">
69 </ImportGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -080070 <ImportGroup Label="PropertySheets">
Brian Curtin401f9f32012-05-13 11:19:23 -050071 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
Steve Dower65e4cb12014-11-22 12:54:57 -080072 <Import Project="pyproject.props" />
Brian Curtin401f9f32012-05-13 11:19:23 -050073 </ImportGroup>
74 <PropertyGroup Label="UserMacros" />
Steve Dower65e4cb12014-11-22 12:54:57 -080075 <ItemDefinitionGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050076 <ClCompile>
Steve Dower65e4cb12014-11-22 12:54:57 -080077 <AdditionalIncludeDirectories>$(PySourcePath)Modules\expat;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
Segev Finer7526cad2017-06-29 01:18:28 +030078 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;PYEXPAT_EXPORTS;HAVE_EXPAT_H;XML_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Brian Curtin401f9f32012-05-13 11:19:23 -050079 </ClCompile>
80 </ItemDefinitionGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050081 <ItemGroup>
82 <ClInclude Include="..\Modules\expat\xmlrole.h" />
83 <ClInclude Include="..\Modules\expat\xmltok.h" />
84 </ItemGroup>
85 <ItemGroup>
86 <ClCompile Include="..\Modules\pyexpat.c" />
Victor Stinner93d0cb52017-08-18 23:43:54 +020087 <ClCompile Include="..\Modules\expat\loadlibrary.c" />
Brian Curtin401f9f32012-05-13 11:19:23 -050088 <ClCompile Include="..\Modules\expat\xmlparse.c" />
89 <ClCompile Include="..\Modules\expat\xmlrole.c" />
90 <ClCompile Include="..\Modules\expat\xmltok.c" />
91 </ItemGroup>
92 <ItemGroup>
Steve Dowerb0660582016-04-06 12:35:24 -070093 <ResourceCompile Include="..\PC\python_nt.rc" />
94 </ItemGroup>
95 <ItemGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050096 <ProjectReference Include="pythoncore.vcxproj">
97 <Project>{cf7ac3d1-e2df-41d2-bea6-1e2556cdea26}</Project>
98 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
99 </ProjectReference>
100 </ItemGroup>
101 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
102 <ImportGroup Label="ExtensionTargets">
103 </ImportGroup>
Victor Stinner93d0cb52017-08-18 23:43:54 +0200104</Project>