Staging
v0.5.1
https://github.com/python/cpython
Revision f11caa0bba648d744c1d4050b11038505fd6e1fe authored by R David Murray on 14 September 2013, 17:31:14 UTC, committed by R David Murray on 14 September 2013, 17:31:14 UTC
This test will fail because a previous attempt to fix a merge error
in site.py was incorrect, but the test wasn't running so it wasn't
caught.  The next commit will fix the site.py bug.
2 parent s c79413d + 1bc6ceb
Raw File
Tip revision: f11caa0bba648d744c1d4050b11038505fd6e1fe authored by R David Murray on 14 September 2013, 17:31:14 UTC
Merge #18206: Fix test for existence of license URL.
Tip revision: f11caa0
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>
      <AdditionalOptions>/USECL:MS_OPTERON /GS- %(AdditionalOptions)</AdditionalOptions>
      <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