Staging
v0.5.1
https://github.com/python/cpython
Revision 39abba46db9c9b4ad4a43b405068cfb018f7ab01 authored by Martin v. Löwis on 09 February 2015, 06:51:32 UTC, committed by Martin v. Löwis on 09 February 2015, 06:51:32 UTC
1 parent 833d192
Raw File
Tip revision: 39abba46db9c9b4ad4a43b405068cfb018f7ab01 authored by Martin v. Löwis on 09 February 2015, 06:51:32 UTC
Issue #17896: Update msi.py to new externals dir.
Tip revision: 39abba4
x64.props
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup Label="UserMacros" Condition="'$(HOST_PYTHON)'!=''">
    <PythonExe>$(HOST_PYTHON)</PythonExe>
  </PropertyGroup>
  <ItemDefinitionGroup>
    <ClCompile>
      <BufferSecurityCheck>false</BufferSecurityCheck>
      <PreprocessorDefinitions>_WIN64;_M_X64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    </ClCompile>
    <Link>
      <TargetMachine>MachineX64</TargetMachine>
    </Link>
  </ItemDefinitionGroup>
  <ItemGroup>
    <BuildMacro Include="PythonExe">
      <Value>$(PythonExe)</Value>
    </BuildMacro>
  </ItemGroup>
</Project>
back to top