blob: a4e90299288d9112a6e1f6ccc828e4307558e2ed [file] [log] [blame]
Zachary Ware47343722015-07-16 00:24:48 -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>{B11D750F-CD1F-4A96-85CE-E69A5C5259F9}</ProjectGuid>
39 <MakeVersionInfoBeforeTarget>ClCompile</MakeVersionInfoBeforeTarget>
40 </PropertyGroup>
41 <Import Project="python.props" />
42 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
43 <PropertyGroup Label="Configuration">
44 <ConfigurationType>Application</ConfigurationType>
45 <UseOfMfc>false</UseOfMfc>
46 <CharacterSet>MultiByte</CharacterSet>
47 </PropertyGroup>
48 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
49 <ImportGroup Label="ExtensionSettings">
50 </ImportGroup>
51 <ImportGroup Label="PropertySheets">
52 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
53 <Import Project="pyproject.props" />
54 </ImportGroup>
55 <PropertyGroup Label="UserMacros" />
56 <PropertyGroup>
57 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
58 </PropertyGroup>
59 <ItemDefinitionGroup>
60 <ClCompile>
61 <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
62 </ClCompile>
63 <Link>
64 <SubSystem>Console</SubSystem>
65 <StackReserveSize>2000000</StackReserveSize>
66 <BaseAddress>0x1d000000</BaseAddress>
67 </Link>
68 </ItemDefinitionGroup>
69 <ItemGroup>
70 <None Include="..\PC\pycon.ico" />
71 </ItemGroup>
72 <ItemGroup>
73 <ResourceCompile Include="..\PC\python_exe.rc" />
74 </ItemGroup>
75 <ItemGroup>
76 <ClCompile Include="..\Modules\python.c" />
77 </ItemGroup>
78 <ItemGroup>
79 <ProjectReference Include="pythoncore.vcxproj">
80 <Project>{cf7ac3d1-e2df-41d2-bea6-1e2556cdea26}</Project>
81 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
82 </ProjectReference>
83 <ProjectReference Include="w9xpopen.vcxproj">
84 <Project>{e9e0a1f6-0009-4e8c-b8f8-1b8f5d49a058}</Project>
85 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
86 </ProjectReference>
87 </ItemGroup>
88 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
89 <ImportGroup Label="ExtensionTargets">
90 </ImportGroup>
91 <Target Name="GeneratePythonBat" AfterTargets="AfterBuild">
92 <PropertyGroup>
93 <_Content>@rem This script invokes the most recently built Python with all arguments
94@rem passed through to the interpreter. This file is generated by the
95@rem build process and any changes *will* be thrown away by the next
96@rem rebuild.
97@rem This is only meant as a convenience for developing CPython
98@rem and using it outside of that context is ill-advised.
99@echo Running $(Configuration)^|$(Platform) interpreter...
100@"$(OutDir)python$(PyDebugExt).exe" %*
101</_Content>
102 <_ExistingContent Condition="Exists('$(PySourcePath)python.bat')">$([System.IO.File]::ReadAllText('$(PySourcePath)python.bat'))</_ExistingContent>
103 </PropertyGroup>
104 <WriteLinesToFile File="$(PySourcePath)python.bat" Lines="$(_Content)" Overwrite="true" Condition="'$(_Content)' != '$(_ExistingContent)'" />
105 </Target>
106</Project>