blob: 52bc99e0560cd332c7ca72c2193b991648903d52 [file] [log] [blame]
Steve Dower65e4cb12014-11-22 12:54:57 -08001<?xml version="1.0" encoding="utf-8"?>
Steve Dowerbb240872015-02-05 22:08:48 -08002<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
Steve Dower65e4cb12014-11-22 12:54:57 -08003 <PropertyGroup>
Steve Dowerbb240872015-02-05 22:08:48 -08004 <Platform Condition="'$(Platform)' == ''">Win32</Platform>
Steve Dower65e4cb12014-11-22 12:54:57 -08005 <Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
6 <!--
7 Use the latest available version of Visual Studio to build. To override
8 this and build with an earlier version, pass "/p:PlatformToolset=v100"
9 (for example) when building.
Zachary Ware4c5ad942016-01-29 19:08:55 -060010
11 We set BasePlatformToolset for ICC's benefit, it's otherwise ignored.
Steve Dower65e4cb12014-11-22 12:54:57 -080012 -->
Steve Dower5fcd5e62017-09-06 10:01:38 -070013 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and ('$(MSBuildToolsVersion)' == '15.0' or '$(VisualStudioVersion)' == '15.0')">v141</BasePlatformToolset>
Zachary Ware4c5ad942016-01-29 19:08:55 -060014 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath14)' != ''">v140</BasePlatformToolset>
15 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath12)' != ''">v120</BasePlatformToolset>
16 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath11)' != ''">v110</BasePlatformToolset>
17 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath10)' != ''">v100</BasePlatformToolset>
18
19 <PlatformToolset Condition="'$(PlatformToolset)' == ''">$(BasePlatformToolset)</PlatformToolset>
20 <ICCBuild>false</ICCBuild>
21 <ICCBuild Condition="$(PlatformToolset.StartsWith(`Intel C++ Compiler`))">true</ICCBuild>
22
Steve Dower65e4cb12014-11-22 12:54:57 -080023 <!--
24 Convincing MSVC/MSBuild to prefer our platform names is too difficult,
25 so we define our own constant ArchName and use wherever we need it.
26 -->
27 <ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'x64'">amd64</ArchName>
Paul Monson8a1657b2019-02-14 08:31:30 -080028 <ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'ARM'">arm32</ArchName>
Steve Dower65e4cb12014-11-22 12:54:57 -080029 <ArchName Condition="'$(ArchName)' == ''">win32</ArchName>
Steve Dower65e4cb12014-11-22 12:54:57 -080030
31 <!-- Root directory of the repository -->
32 <PySourcePath Condition="'$(PySourcePath)' == ''">$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))</PySourcePath>
33 <PySourcePath Condition="!HasTrailingSlash($(PySourcePath))">$(PySourcePath)\</PySourcePath>
34
35 <!-- Directory where build outputs are put -->
Stefan Grönkef1502d02017-09-25 18:58:10 +020036 <BuildPath32 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\win32\</BuildPath32>
Steve Dower6fd76bc2016-07-16 16:13:19 -070037 <BuildPath32 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\win32\</BuildPath32>
Stefan Grönkef1502d02017-09-25 18:58:10 +020038 <BuildPath64 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\amd64\</BuildPath64>
Steve Dower6fd76bc2016-07-16 16:13:19 -070039 <BuildPath64 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\amd64\</BuildPath64>
Paul Monson8a1657b2019-02-14 08:31:30 -080040 <BuildPathArm32 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCbuild\arm32\</BuildPathArm32>
41 <BuildPathArm32 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\arm32\</BuildPathArm32>
Steve Dower6fd76bc2016-07-16 16:13:19 -070042 <BuildPath Condition="'$(ArchName)' == 'win32'">$(BuildPath32)</BuildPath>
43 <BuildPath Condition="'$(ArchName)' == 'amd64'">$(BuildPath64)</BuildPath>
Paul Monson8a1657b2019-02-14 08:31:30 -080044 <BuildPath Condition="'$(ArchName)' == 'arm32'">$(BuildPathArm32)</BuildPath>
Stefan Grönkef1502d02017-09-25 18:58:10 +020045 <BuildPath Condition="'$(BuildPath)' == ''">$(PySourcePath)PCbuild\$(ArchName)\</BuildPath>
Steve Dower65e4cb12014-11-22 12:54:57 -080046 <BuildPath Condition="!HasTrailingSlash($(BuildPath))">$(BuildPath)\</BuildPath>
Steve Dower5fcd5e62017-09-06 10:01:38 -070047 <BuildPath Condition="$(Configuration) == 'PGInstrument'">$(BuildPath)instrumented\</BuildPath>
Steve Dower65e4cb12014-11-22 12:54:57 -080048
49 <!-- Directories of external projects. tcltk is handled in tcltk.props -->
Steve Dower01423cb2018-02-17 18:59:03 -080050 <ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir>
51 <ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir>
52 <ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir>
Mariatta31af6502017-11-06 19:31:53 -080053 <sqlite3Dir>$(ExternalsDir)sqlite-3.21.0.0\</sqlite3Dir>
Steve Dower65e4cb12014-11-22 12:54:57 -080054 <bz2Dir>$(ExternalsDir)bzip2-1.0.6\</bz2Dir>
Zachary Ware16c18a32016-09-11 21:18:07 -050055 <lzmaDir>$(ExternalsDir)xz-5.2.2\</lzmaDir>
Paul Monson32119e12019-03-29 16:30:10 -070056 <libffiDir>$(ExternalsDir)libffi\</libffiDir>
57 <libffiOutDir>$(ExternalsDir)libffi\$(ArchName)\</libffiOutDir>
58 <libffiIncludeDir>$(libffiOutDir)include</libffiIncludeDir>
Steve Dower48243852018-12-10 19:52:36 -080059 <opensslDir>$(ExternalsDir)openssl-1.1.0j\</opensslDir>
60 <opensslOutDir>$(ExternalsDir)openssl-bin-1.1.0j\$(ArchName)\</opensslOutDir>
Steve Dower68d663c2017-07-17 11:15:48 +020061 <opensslIncludeDir>$(opensslOutDir)include</opensslIncludeDir>
Steve Dower65e4cb12014-11-22 12:54:57 -080062 <nasmDir>$(ExternalsDir)\nasm-2.11.06\</nasmDir>
Zachary Wared01db1c2017-09-06 17:29:37 -070063 <zlibDir>$(ExternalsDir)\zlib-1.2.11\</zlibDir>
Steve Dower65e4cb12014-11-22 12:54:57 -080064
65 <!-- Suffix for all binaries when building for debug -->
66 <PyDebugExt Condition="'$(PyDebugExt)' == '' and $(Configuration) == 'Debug'">_d</PyDebugExt>
67
Steve Dower940f6a82015-10-31 12:17:11 -070068 <!-- Suffix for versions/keys when building with test markers -->
69 <PyTestExt Condition="$(UseTestMarker) == 'true'">-test</PyTestExt>
70
71 <!-- Suffix for versions/keys when building for particular platforms -->
72 <PyArchExt Condition="'$(ArchName)' == 'win32'">-32</PyArchExt>
Paul Monson8a1657b2019-02-14 08:31:30 -080073 <PyArchExt Condition="'$(ArchName)' == 'arm32'">-arm32</PyArchExt>
Steve Dower940f6a82015-10-31 12:17:11 -070074
Steve Dower65e4cb12014-11-22 12:54:57 -080075 <!-- Full path of the resulting python.exe binary -->
76 <PythonExe Condition="'$(PythonExe)' == ''">$(BuildPath)python$(PyDebugExt).exe</PythonExe>
Steve Dower49437492015-07-08 20:18:44 -070077 </PropertyGroup>
78
Paul Monson8a1657b2019-02-14 08:31:30 -080079 <PropertyGroup Condition="'$(Platform)'=='ARM'" Label="ArmConfiguration">
80 <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
81 </PropertyGroup>
82
Steve Dower9b33bf52017-05-23 16:25:25 -070083 <PropertyGroup Condition="$(DefaultWindowsSDKVersion) == ''">
84 <!--
85 Attempt to select the latest installed WinSDK. If we don't find any, then we will
86 let the MSBuild targets determine which one it wants to use (typically the earliest
87 possible version). Since we limit WINVER to Windows 7 anyway, it doesn't really
88 matter which WinSDK version we use.
89 -->
Steve Dower30f4fa42017-11-06 12:52:09 -080090 <_RegistryVersion>$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)</_RegistryVersion>
Isuru Fernandoaedc2732019-03-21 12:52:57 -050091 <_RegistryVersion Condition="$(_RegistryVersion) == ''">$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion)</_RegistryVersion>
Jeremy Klothf46eccd2018-12-09 20:59:32 -070092 <!-- Sometimes the version in the registry has to .0 suffix, and sometimes it doesn't. Check and add it -->
93 <_RegistryVersion Condition="$(_RegistryVersion) != '' and !$(_RegistryVersion.EndsWith('.0'))">$(_RegistryVersion).0</_RegistryVersion>
94
95 <!-- The minimum allowed SDK version to use for building -->
96 <DefaultWindowsSDKVersion>10.0.10586.0</DefaultWindowsSDKVersion>
97 <DefaultWindowsSDKVersion Condition="$([System.Version]::Parse($(_RegistryVersion))) > $([System.Version]::Parse($(DefaultWindowsSDKVersion)))">$(_RegistryVersion)</DefaultWindowsSDKVersion>
Steve Dower9b33bf52017-05-23 16:25:25 -070098 </PropertyGroup>
99
Jeremy Klothf46eccd2018-12-09 20:59:32 -0700100 <PropertyGroup Condition="$(WindowsTargetPlatformVersion) == ''">
101 <WindowsTargetPlatformVersion>$(DefaultWindowsSDKVersion)</WindowsTargetPlatformVersion>
102 </PropertyGroup>
103
Steve Dower49437492015-07-08 20:18:44 -0700104 <PropertyGroup Condition="'$(OverrideVersion)' == ''">
Steve Dower65e4cb12014-11-22 12:54:57 -0800105 <!--
106 Read version information from Include\patchlevel.h. The following properties are set:
107
108 MajorVersionNumber - the '3' in '3.5.2a1'
109 MinorVersionNumber - the '5' in '3.5.2a1'
110 MicroVersionNumber - the '2' in '3.5.2a1'
111 ReleaseSerial - the '1' in '3.5.2a1'
112 ReleaseLevelName - the 'a1' in '3.5.2a1'
113 PythonVersionNumber - '3.5.2' for '3.5.2a1'
114 PythonVersion - '3.5.2a1'
115 PythonVersionHex - 0x030502a1 for '3.5.2a1'
116 ReleaseLevelNumber - 10 for alpha, 11 for beta, 12 for RC (gamma), and 15 for final
117 Field3Value - 2101 for '3.5.2a1' (== 1000*2 + 10*10 ('a') + 1)
118 -->
119 <_PatchLevelContent>$([System.IO.File]::ReadAllText(`$(PySourcePath)Include\patchlevel.h`))</_PatchLevelContent>
120 <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MAJOR_VERSION\s+(\d+)`).Groups[1].Value)</MajorVersionNumber>
121 <MinorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MINOR_VERSION\s+(\d+)`).Groups[1].Value)</MinorVersionNumber>
122 <MicroVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MICRO_VERSION\s+(\d+)`).Groups[1].Value)</MicroVersionNumber>
123 <_ReleaseLevel>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_RELEASE_LEVEL\s+PY_RELEASE_LEVEL_(\w+)`).Groups[1].Value)</_ReleaseLevel>
124 <ReleaseSerial>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_RELEASE_SERIAL\s+(\d+)`).Groups[1].Value)</ReleaseSerial>
125 <ReleaseLevelNumber>15</ReleaseLevelNumber>
126 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'ALPHA'">10</ReleaseLevelNumber>
127 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'BETA'">11</ReleaseLevelNumber>
128 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'GAMMA'">12</ReleaseLevelNumber>
129 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'ALPHA'">a$(ReleaseSerial)</ReleaseLevelName>
130 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'BETA'">b$(ReleaseSerial)</ReleaseLevelName>
131 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'GAMMA'">rc$(ReleaseSerial)</ReleaseLevelName>
Steve Dower49437492015-07-08 20:18:44 -0700132 </PropertyGroup>
133
134 <PropertyGroup Condition="'$(OverrideVersion)' != ''">
135 <!--
136 Override the version number when building by specifying OverrideVersion.
137 For example:
Steve Dower65e4cb12014-11-22 12:54:57 -0800138
Stefan Grönkef1502d02017-09-25 18:58:10 +0200139 PCbuild\build.bat "/p:OverrideVersion=3.5.2a1"
Steve Dower49437492015-07-08 20:18:44 -0700140
141 Use the -V option to check your version is valid:
142
Stefan Grönkef1502d02017-09-25 18:58:10 +0200143 PCbuild\build.bat -V "/p:OverrideVersion=3.5.2a1"
Steve Dower49437492015-07-08 20:18:44 -0700144 PythonVersionNumber: 3.5.2
145 PythonVersion: 3.5.2a1
146 PythonVersionHex: 0x030502A1
147 Field3Value: 2101
148
149 Note that this only affects the version numbers embedded in resources and
150 installers, but not sys.version.
151 -->
152 <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[1].Value)</MajorVersionNumber>
153 <MinorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[2].Value)</MinorVersionNumber>
154 <MicroVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[3].Value)</MicroVersionNumber>
155 <ReleaseLevelName>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[4].Value)</ReleaseLevelName>
156 <_ReleaseLevel>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[5].Value)</_ReleaseLevel>
157 <ReleaseSerial>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[6].Value)</ReleaseSerial>
158 <ReleaseSerial Condition="'$(ReleaseSerial)' == ''">0</ReleaseSerial>
159 <ReleaseLevelNumber>15</ReleaseLevelNumber>
160 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'a'">10</ReleaseLevelNumber>
161 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'b'">11</ReleaseLevelNumber>
162 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'rc'">12</ReleaseLevelNumber>
163 </PropertyGroup>
164
165 <PropertyGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -0800166 <PythonVersionNumber>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</PythonVersionNumber>
167 <PythonVersion>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)$(ReleaseLevelName)</PythonVersion>
168 <PythonVersionHex>$([msbuild]::BitwiseOr(
169 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)),
170 $([msbuild]::BitwiseOr(
171 $([msbuild]::Multiply($(MinorVersionNumber), 65536)),
172 $([msbuild]::BitwiseOr(
173 $([msbuild]::Multiply($(MicroVersionNumber), 256)),
174 $([msbuild]::BitwiseOr(
175 $([msbuild]::Multiply($(ReleaseLevelNumber), 16)),
176 $(ReleaseSerial)
177 ))
178 ))
179 ))
180 ))</PythonVersionHex>
181 <Field3Value>$([msbuild]::Add(
182 $(ReleaseSerial),
183 $([msbuild]::Add(
184 $([msbuild]::Multiply($(ReleaseLevelNumber), 10)),
185 $([msbuild]::Multiply($(MicroVersionNumber), 1000))
186 ))
187 ))</Field3Value>
Steve Dower940f6a82015-10-31 12:17:11 -0700188 <Field3Value Condition="$(UseTestMarker) == 'true'">$([msbuild]::Add($(Field3Value), 9000))</Field3Value>
Steve Dower65e4cb12014-11-22 12:54:57 -0800189
190 <!-- The name of the resulting pythonXY.dll (without the extension) -->
191 <PyDllName>python$(MajorVersionNumber)$(MinorVersionNumber)$(PyDebugExt)</PyDllName>
Steve Dower03a144b2014-12-15 20:45:23 -0800192
193 <!-- The version and platform tag to include in .pyd filenames -->
Steve Dower940f6a82015-10-31 12:17:11 -0700194 <PydTag Condition="$(ArchName) == 'win32'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win32</PydTag>
Paul Monson8a1657b2019-02-14 08:31:30 -0800195 <PydTag Condition="$(ArchName) == 'arm32'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_arm32</PydTag>
Steve Dower940f6a82015-10-31 12:17:11 -0700196 <PydTag Condition="$(ArchName) == 'amd64'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_amd64</PydTag>
Steve Dower25879522015-01-15 09:10:16 -0800197
198 <!-- The version number for sys.winver -->
Steve Dower940f6a82015-10-31 12:17:11 -0700199 <SysWinVer>$(MajorVersionNumber).$(MinorVersionNumber)$(PyArchExt)$(PyTestExt)</SysWinVer>
Steve Dower65e4cb12014-11-22 12:54:57 -0800200 </PropertyGroup>
201
202 <!-- Displays the calculated version info -->
203 <Target Name="ShowVersionInfo">
204 <Message Importance="high" Text="PythonVersionNumber: $(PythonVersionNumber)" />
205 <Message Importance="high" Text="PythonVersion: $(PythonVersion)" />
Steve Dower49437492015-07-08 20:18:44 -0700206 <Message Importance="high" Text="PythonVersionHex: 0x$([System.UInt32]::Parse($(PythonVersionHex)).ToString(`X08`))" />
Steve Dower65e4cb12014-11-22 12:54:57 -0800207 <Message Importance="high" Text="Field3Value: $(Field3Value)" />
Steve Dower940f6a82015-10-31 12:17:11 -0700208 <Message Importance="high" Text="SysWinVer: $(SysWinVer)" />
209 <Message Importance="high" Text="PyDllName: $(PyDllName)" />
Jeremy Klothf46eccd2018-12-09 20:59:32 -0700210 <Message Importance="high" Text="WindowsSdkVersion: $(TargetPlatformVersion)" />
Steve Dower65e4cb12014-11-22 12:54:57 -0800211 </Target>
212</Project>