blob: d75ebd656a7f08e30d8dd7991a24c339115e35b7 [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">
4 <ProjectConfiguration Include="Debug|Win32">
5 <Configuration>Debug</Configuration>
6 <Platform>Win32</Platform>
7 </ProjectConfiguration>
8 <ProjectConfiguration Include="Debug|x64">
9 <Configuration>Debug</Configuration>
10 <Platform>x64</Platform>
11 </ProjectConfiguration>
12 <ProjectConfiguration Include="PGInstrument|Win32">
13 <Configuration>PGInstrument</Configuration>
14 <Platform>Win32</Platform>
15 </ProjectConfiguration>
16 <ProjectConfiguration Include="PGInstrument|x64">
17 <Configuration>PGInstrument</Configuration>
18 <Platform>x64</Platform>
19 </ProjectConfiguration>
20 <ProjectConfiguration Include="PGUpdate|Win32">
21 <Configuration>PGUpdate</Configuration>
22 <Platform>Win32</Platform>
23 </ProjectConfiguration>
24 <ProjectConfiguration Include="PGUpdate|x64">
25 <Configuration>PGUpdate</Configuration>
26 <Platform>x64</Platform>
27 </ProjectConfiguration>
28 <ProjectConfiguration Include="Release|Win32">
29 <Configuration>Release</Configuration>
30 <Platform>Win32</Platform>
31 </ProjectConfiguration>
32 <ProjectConfiguration Include="Release|x64">
33 <Configuration>Release</Configuration>
34 <Platform>x64</Platform>
35 </ProjectConfiguration>
36 </ItemGroup>
37 <PropertyGroup Label="Globals">
38 <ProjectGuid>{C6E20F84-3247-4AD6-B051-B073268F73BA}</ProjectGuid>
39 <RootNamespace>_ssl</RootNamespace>
40 <Keyword>Win32Proj</Keyword>
41 </PropertyGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -080042 <Import Project="python.props" />
Brian Curtin401f9f32012-05-13 11:19:23 -050043 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
Steve Dower65e4cb12014-11-22 12:54:57 -080044 <PropertyGroup Label="Configuration">
Brian Curtin401f9f32012-05-13 11:19:23 -050045 <ConfigurationType>DynamicLibrary</ConfigurationType>
46 <CharacterSet>NotSet</CharacterSet>
47 </PropertyGroup>
48 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Steve Dower65e4cb12014-11-22 12:54:57 -080049 <PropertyGroup>
50 <TargetExt>.pyd</TargetExt>
51 </PropertyGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050052 <ImportGroup Label="ExtensionSettings">
53 </ImportGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -080054 <ImportGroup Label="PropertySheets">
Brian Curtin401f9f32012-05-13 11:19:23 -050055 <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 -080056 <Import Project="pyproject.props" />
Brian Curtin401f9f32012-05-13 11:19:23 -050057 </ImportGroup>
58 <PropertyGroup Label="UserMacros" />
59 <PropertyGroup>
60 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
Brian Curtin401f9f32012-05-13 11:19:23 -050061 </PropertyGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -080062 <ItemDefinitionGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050063 <ClCompile>
Zachary Ware6fe57ad2016-02-22 04:08:51 -060064 <AdditionalIncludeDirectories>$(opensslIncludeDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
Brian Curtin401f9f32012-05-13 11:19:23 -050065 </ClCompile>
Brian Curtin401f9f32012-05-13 11:19:23 -050066 <Link>
Steve Dower65e4cb12014-11-22 12:54:57 -080067 <AdditionalDependencies>ws2_32.lib;crypt32.lib;$(OutDir)libeay$(PyDebugExt).lib;$(OutDir)ssleay$(PyDebugExt).lib;%(AdditionalDependencies)</AdditionalDependencies>
Brian Curtin401f9f32012-05-13 11:19:23 -050068 </Link>
69 </ItemDefinitionGroup>
70 <ItemGroup>
71 <ClCompile Include="..\Modules\_ssl.c" />
72 </ItemGroup>
73 <ItemGroup>
Steve Dowerb0660582016-04-06 12:35:24 -070074 <ResourceCompile Include="..\PC\python_nt.rc" />
75 </ItemGroup>
76 <ItemGroup>
Brian Curtin401f9f32012-05-13 11:19:23 -050077 <ProjectReference Include="pythoncore.vcxproj">
78 <Project>{cf7ac3d1-e2df-41d2-bea6-1e2556cdea26}</Project>
79 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
80 </ProjectReference>
Steve Dower65e4cb12014-11-22 12:54:57 -080081 <ProjectReference Include="libeay.vcxproj">
Brian Curtin401f9f32012-05-13 11:19:23 -050082 <Project>{e5b04cc0-eb4c-42ab-b4dc-18ef95f864b0}</Project>
83 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
84 </ProjectReference>
Steve Dower65e4cb12014-11-22 12:54:57 -080085 <ProjectReference Include="ssleay.vcxproj">
86 <Project>{10615b24-73bf-4efa-93aa-236916321317}</Project>
87 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
88 </ProjectReference>
Brian Curtin401f9f32012-05-13 11:19:23 -050089 <ProjectReference Include="_socket.vcxproj">
90 <Project>{86937f53-c189-40ef-8ce8-8759d8e7d480}</Project>
91 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
92 </ProjectReference>
93 </ItemGroup>
94 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
95 <ImportGroup Label="ExtensionTargets">
96 </ImportGroup>
Zachary Ware6fe57ad2016-02-22 04:08:51 -060097</Project>