Staging
v0.5.1
https://github.com/python/cpython
Revision 20ac14fbada54df7e16e50d2f010329e0b14d4fd authored by R David Murray on 30 July 2013, 18:43:10 UTC, committed by R David Murray on 30 July 2013, 18:43:10 UTC
2 parent s 8547a0e + 11bfd32
Raw File
Tip revision: 20ac14fbada54df7e16e50d2f010329e0b14d4fd authored by R David Murray on 30 July 2013, 18:43:10 UTC
Merge #18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1.
Tip revision: 20ac14f
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