mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
a191b91a43
solution. Currently, Tix is not built in Debug configuration. This change also: - simplifies some Tcl/Tk-related msbuild properties for _tkinter - copies the Tcl and Tk DLLs into the build output directory, meaning they will always be available after a build without having to copy them manually or change PATH - removes PCbuild/build_tkinter.py: the solution does the build without needing to invoke Python (so Tcl/Tk/Tix can be built in parallel with the rest of the build using the `/m` msbuild command line switch) - removes an outdated README concerning building Tcl/Tk on AMD64
26 lines
911 B
XML
26 lines
911 B
XML
<?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>
|
|
<PropertyGroup Label="UserMacros">
|
|
<tcltkDir>$(externalsDir)\tcltk64</tcltkDir>
|
|
</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>
|
|
<BuildMacro Include="tcltkDir">
|
|
<Value>$(tcltkDir)</Value>
|
|
</BuildMacro>
|
|
</ItemGroup>
|
|
</Project> |