1<?xml version="1.0" encoding="utf-8"?> 2<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup> 4 <__Python_Props_Imported>true</__Python_Props_Imported> 5 <Platform Condition="'$(Platform)' == ''">Win32</Platform> 6 <Configuration Condition="'$(Configuration)' == ''">Release</Configuration> 7 <!-- 8 Use the latest available version of Visual Studio to build. To override 9 this and build with an earlier version, pass "/p:PlatformToolset=v100" 10 (for example) when building. 11 12 We set BasePlatformToolset for ICC's benefit, it's otherwise ignored. 13 --> 14 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VisualStudioVersion)' == '17.0'">v142</BasePlatformToolset> 15 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VisualStudioVersion)' == '16.0'">v142</BasePlatformToolset> 16 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and ('$(MSBuildToolsVersion)' == '15.0' or '$(VisualStudioVersion)' == '15.0')">v141</BasePlatformToolset> 17 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath14)' != ''">v140</BasePlatformToolset> 18 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath12)' != ''">v120</BasePlatformToolset> 19 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath11)' != ''">v110</BasePlatformToolset> 20 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath10)' != ''">v100</BasePlatformToolset> 21 22 <PlatformToolset Condition="'$(PlatformToolset)' == ''">$(BasePlatformToolset)</PlatformToolset> 23 <ICCBuild>false</ICCBuild> 24 <ICCBuild Condition="$(PlatformToolset.StartsWith(`Intel C++ Compiler`))">true</ICCBuild> 25 26 <!-- 27 Convincing MSVC/MSBuild to prefer our platform names is too difficult, 28 so we define our own constant ArchName and use wherever we need it. 29 --> 30 <ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'x64'">amd64</ArchName> 31 <ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'ARM'">arm32</ArchName> 32 <ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'ARM64'">arm64</ArchName> 33 <ArchName Condition="'$(ArchName)' == ''">win32</ArchName> 34 35 <!-- Root directory of the repository --> 36 <PySourcePath Condition="'$(PySourcePath)' == ''">$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))</PySourcePath> 37 <PySourcePath Condition="!HasTrailingSlash($(PySourcePath))">$(PySourcePath)\</PySourcePath> 38 39 <!-- Directory where build outputs are put --> 40 <BuildPath32 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\win32\</BuildPath32> 41 <BuildPath32 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\win32\</BuildPath32> 42 <BuildPath64 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\amd64\</BuildPath64> 43 <BuildPath64 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\amd64\</BuildPath64> 44 <BuildPathArm32 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\arm32\</BuildPathArm32> 45 <BuildPathArm32 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\arm32\</BuildPathArm32> 46 <BuildPathArm64 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\arm64\</BuildPathArm64> 47 <BuildPathArm64 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\arm64\</BuildPathArm64> 48 <BuildPath Condition="'$(ArchName)' == 'win32'">$(BuildPath32)</BuildPath> 49 <BuildPath Condition="'$(ArchName)' == 'amd64'">$(BuildPath64)</BuildPath> 50 <BuildPath Condition="'$(ArchName)' == 'arm32'">$(BuildPathArm32)</BuildPath> 51 <BuildPath Condition="'$(ArchName)' == 'arm64'">$(BuildPathArm64)</BuildPath> 52 <BuildPath Condition="'$(BuildPath)' == ''">$(PySourcePath)PCbuild\$(ArchName)\</BuildPath> 53 <BuildPath Condition="!HasTrailingSlash($(BuildPath))">$(BuildPath)\</BuildPath> 54 <BuildPath Condition="$(Configuration) == 'PGInstrument'">$(BuildPath)instrumented\</BuildPath> 55 56 <!-- Directories of external projects. tcltk is handled in tcltk.props --> 57 <ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir> 58 <ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir> 59 <ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir> 60 <sqlite3Dir>$(ExternalsDir)sqlite-3.35.5.0\</sqlite3Dir> 61 <bz2Dir>$(ExternalsDir)bzip2-1.0.6\</bz2Dir> 62 <lzmaDir>$(ExternalsDir)xz-5.2.2\</lzmaDir> 63 <libffiDir>$(ExternalsDir)libffi-3.3.0\</libffiDir> 64 <libffiOutDir>$(ExternalsDir)libffi-3.3.0\$(ArchName)\</libffiOutDir> 65 <libffiIncludeDir>$(libffiOutDir)include</libffiIncludeDir> 66 <opensslDir>$(ExternalsDir)openssl-1.1.1m\</opensslDir> 67 <opensslOutDir>$(ExternalsDir)openssl-bin-1.1.1m\$(ArchName)\</opensslOutDir> 68 <opensslIncludeDir>$(opensslOutDir)include</opensslIncludeDir> 69 <nasmDir>$(ExternalsDir)\nasm-2.11.06\</nasmDir> 70 <zlibDir>$(ExternalsDir)\zlib-1.2.11\</zlibDir> 71 72 <!-- Suffix for all binaries when building for debug --> 73 <PyDebugExt Condition="'$(PyDebugExt)' == '' and $(Configuration) == 'Debug'">_d</PyDebugExt> 74 75 <!-- Suffix for versions/keys when building with test markers --> 76 <PyTestExt Condition="$(UseTestMarker) == 'true'">-test</PyTestExt> 77 78 <!-- Suffix for versions/keys when building for particular platforms --> 79 <PyArchExt Condition="'$(ArchName)' == 'win32'">-32</PyArchExt> 80 <PyArchExt Condition="'$(ArchName)' == 'arm32'">-arm32</PyArchExt> 81 <PyArchExt Condition="'$(ArchName)' == 'arm64'">-arm64</PyArchExt> 82 83 <!-- Full path of the resulting python.exe binary --> 84 <PythonExe Condition="'$(PythonExe)' == ''">$(BuildPath)python$(PyDebugExt).exe</PythonExe> 85 86 <!-- Include Tkinter by default --> 87 <IncludeTkinter Condition="'$(IncludeTkinter)' == ''">true</IncludeTkinter> 88 </PropertyGroup> 89 90 <PropertyGroup Condition="'$(Platform)'=='ARM'" Label="ArmConfiguration"> 91 <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> 92 </PropertyGroup> 93 94 <PropertyGroup Condition="'$(Platform)'=='ARM64'" Label="Arm64Configuration"> 95 <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> 96 </PropertyGroup> 97 98 <PropertyGroup Condition="$(DefaultWindowsSDKVersion) == ''"> 99 <!-- 100 Attempt to select the latest installed WinSDK. If we don't find any, then we will 101 let the MSBuild targets determine which one it wants to use (typically the earliest 102 possible version). Since we limit WINVER to Windows 7 anyway, it doesn't really 103 matter which WinSDK version we use. 104 --> 105 <_RegistryVersion>$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)</_RegistryVersion> 106 <_RegistryVersion Condition="$(_RegistryVersion) == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)</_RegistryVersion> 107 <!-- Sometimes the version in the registry has to .0 suffix, and sometimes it doesn't. Check and add it --> 108 <_RegistryVersion Condition="$(_RegistryVersion) != '' and !$(_RegistryVersion.EndsWith('.0'))">$(_RegistryVersion).0</_RegistryVersion> 109 110 <!-- The minimum allowed SDK version to use for building --> 111 <DefaultWindowsSDKVersion>10.0.10586.0</DefaultWindowsSDKVersion> 112 <DefaultWindowsSDKVersion Condition="$(_RegistryVersion) != '' and $([System.Version]::Parse($(_RegistryVersion))) > $([System.Version]::Parse($(DefaultWindowsSDKVersion)))">$(_RegistryVersion)</DefaultWindowsSDKVersion> 113 </PropertyGroup> 114 115 <Target Name="_CheckWindowsSDKFound" BeforeTargets="_CheckWindowsSDKInstalled" Condition="$(_RegistryVersion) == ''"> 116 <PropertyGroup> 117 <_Message>Failed to locate a Windows SDK installation.</_Message> 118 <_Message>$(_Message) If the build fails, please use the Visual Studio Installer to install the Windows SDK.</_Message> 119 <_Message>$(_Message) (Ignore the version number specified in the error message and select the latest.)</_Message> 120 </PropertyGroup> 121 <Warning Text="$(_Message)" /> 122 </Target> 123 124 <PropertyGroup Condition="$(WindowsTargetPlatformVersion) == ''"> 125 <WindowsTargetPlatformVersion>$(DefaultWindowsSDKVersion)</WindowsTargetPlatformVersion> 126 </PropertyGroup> 127 128 <PropertyGroup Condition="'$(OverrideVersion)' == ''"> 129 <!-- 130 Read version information from Include\patchlevel.h. The following properties are set: 131 132 MajorVersionNumber - the '3' in '3.5.2a1' 133 MinorVersionNumber - the '5' in '3.5.2a1' 134 MicroVersionNumber - the '2' in '3.5.2a1' 135 ReleaseSerial - the '1' in '3.5.2a1' 136 ReleaseLevelName - the 'a1' in '3.5.2a1' 137 PythonVersionNumber - '3.5.2' for '3.5.2a1' 138 PythonVersion - '3.5.2a1' 139 PythonVersionHex - 0x030502a1 for '3.5.2a1' 140 ReleaseLevelNumber - 10 for alpha, 11 for beta, 12 for RC (gamma), and 15 for final 141 Field3Value - 2101 for '3.5.2a1' (== 1000*2 + 10*10 ('a') + 1) 142 --> 143 <_PatchLevelContent>$([System.IO.File]::ReadAllText(`$(PySourcePath)Include\patchlevel.h`))</_PatchLevelContent> 144 <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MAJOR_VERSION\s+(\d+)`).Groups[1].Value)</MajorVersionNumber> 145 <MinorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MINOR_VERSION\s+(\d+)`).Groups[1].Value)</MinorVersionNumber> 146 <MicroVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MICRO_VERSION\s+(\d+)`).Groups[1].Value)</MicroVersionNumber> 147 <_ReleaseLevel>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_RELEASE_LEVEL\s+PY_RELEASE_LEVEL_(\w+)`).Groups[1].Value)</_ReleaseLevel> 148 <ReleaseSerial>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_RELEASE_SERIAL\s+(\d+)`).Groups[1].Value)</ReleaseSerial> 149 <ReleaseLevelNumber>15</ReleaseLevelNumber> 150 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'ALPHA'">10</ReleaseLevelNumber> 151 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'BETA'">11</ReleaseLevelNumber> 152 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'GAMMA'">12</ReleaseLevelNumber> 153 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'ALPHA'">a$(ReleaseSerial)</ReleaseLevelName> 154 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'BETA'">b$(ReleaseSerial)</ReleaseLevelName> 155 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'GAMMA'">rc$(ReleaseSerial)</ReleaseLevelName> 156 </PropertyGroup> 157 158 <PropertyGroup Condition="'$(OverrideVersion)' != ''"> 159 <!-- 160 Override the version number when building by specifying OverrideVersion. 161 For example: 162 163 PCbuild\build.bat "/p:OverrideVersion=3.5.2a1" 164 165 Use the -V option to check your version is valid: 166 167 PCbuild\build.bat -V "/p:OverrideVersion=3.5.2a1" 168 PythonVersionNumber: 3.5.2 169 PythonVersion: 3.5.2a1 170 PythonVersionHex: 0x030502A1 171 Field3Value: 2101 172 173 Note that this only affects the version numbers embedded in resources and 174 installers, but not sys.version. 175 --> 176 <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[1].Value)</MajorVersionNumber> 177 <MinorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[2].Value)</MinorVersionNumber> 178 <MicroVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[3].Value)</MicroVersionNumber> 179 <ReleaseLevelName>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[4].Value)</ReleaseLevelName> 180 <_ReleaseLevel>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[5].Value)</_ReleaseLevel> 181 <ReleaseSerial>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[6].Value)</ReleaseSerial> 182 <ReleaseSerial Condition="'$(ReleaseSerial)' == ''">0</ReleaseSerial> 183 <ReleaseLevelNumber>15</ReleaseLevelNumber> 184 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'a'">10</ReleaseLevelNumber> 185 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'b'">11</ReleaseLevelNumber> 186 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'rc'">12</ReleaseLevelNumber> 187 </PropertyGroup> 188 189 <PropertyGroup> 190 <PythonVersionNumber>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</PythonVersionNumber> 191 <PythonVersion>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)$(ReleaseLevelName)</PythonVersion> 192 <PythonVersionHex>$([msbuild]::BitwiseOr( 193 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)), 194 $([msbuild]::BitwiseOr( 195 $([msbuild]::Multiply($(MinorVersionNumber), 65536)), 196 $([msbuild]::BitwiseOr( 197 $([msbuild]::Multiply($(MicroVersionNumber), 256)), 198 $([msbuild]::BitwiseOr( 199 $([msbuild]::Multiply($(ReleaseLevelNumber), 16)), 200 $(ReleaseSerial) 201 )) 202 )) 203 )) 204 ))</PythonVersionHex> 205 <Field3Value>$([msbuild]::Add( 206 $(ReleaseSerial), 207 $([msbuild]::Add( 208 $([msbuild]::Multiply($(ReleaseLevelNumber), 10)), 209 $([msbuild]::Multiply($(MicroVersionNumber), 1000)) 210 )) 211 ))</Field3Value> 212 <Field3Value Condition="$(UseTestMarker) == 'true'">$([msbuild]::Add($(Field3Value), 9000))</Field3Value> 213 214 <!-- The name of the resulting pythonXY.dll (without the extension) --> 215 <PyDllName>python$(MajorVersionNumber)$(MinorVersionNumber)$(PyDebugExt)</PyDllName> 216 <!-- The name of the resulting pythonX.dll (without the extension) --> 217 <Py3DllName>python3$(PyDebugExt)</Py3DllName> 218 219 <!-- The version and platform tag to include in .pyd filenames --> 220 <PydTag Condition="$(ArchName) == 'win32'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win32</PydTag> 221 <PydTag Condition="$(ArchName) == 'arm32'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_arm32</PydTag> 222 <PydTag Condition="$(ArchName) == 'arm64'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_arm64</PydTag> 223 <PydTag Condition="$(ArchName) == 'amd64'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_amd64</PydTag> 224 225 <!-- The version number for sys.winver --> 226 <SysWinVer>$(MajorVersionNumber).$(MinorVersionNumber)$(PyArchExt)$(PyTestExt)</SysWinVer> 227 </PropertyGroup> 228 229 <!-- Displays the calculated version info --> 230 <Target Name="ShowVersionInfo"> 231 <Message Importance="high" Text="PythonVersionNumber: $(PythonVersionNumber)" /> 232 <Message Importance="high" Text="PythonVersion: $(PythonVersion)" /> 233 <Message Importance="high" Text="PythonVersionHex: 0x$([System.UInt32]::Parse($(PythonVersionHex)).ToString(`X08`))" /> 234 <Message Importance="high" Text="PythonVersionUnique: $(MajorVersionNumber).$(MinorVersionNumber).$(Field3Value)" /> 235 <Message Importance="high" Text="Field3Value: $(Field3Value)" /> 236 <Message Importance="high" Text="SysWinVer: $(SysWinVer)" /> 237 <Message Importance="high" Text="PyDllName: $(PyDllName)" /> 238 <Message Importance="high" Text="WindowsSdkVersion: $(TargetPlatformVersion)" /> 239 </Target> 240</Project> 241