blob: 563487e0c366ff081da397a153b73987ce171d88 [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 -->
Zachary Ware4c5ad942016-01-29 19:08:55 -060013 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath14)' != ''">v140</BasePlatformToolset>
14 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath12)' != ''">v120</BasePlatformToolset>
15 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath11)' != ''">v110</BasePlatformToolset>
16 <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(VCTargetsPath10)' != ''">v100</BasePlatformToolset>
17
18 <PlatformToolset Condition="'$(PlatformToolset)' == ''">$(BasePlatformToolset)</PlatformToolset>
19 <ICCBuild>false</ICCBuild>
20 <ICCBuild Condition="$(PlatformToolset.StartsWith(`Intel C++ Compiler`))">true</ICCBuild>
21
Steve Dower65e4cb12014-11-22 12:54:57 -080022 <!--
23 Convincing MSVC/MSBuild to prefer our platform names is too difficult,
24 so we define our own constant ArchName and use wherever we need it.
25 -->
26 <ArchName Condition="'$(ArchName)' == '' and $(Platform) == 'x64'">amd64</ArchName>
27 <ArchName Condition="'$(ArchName)' == ''">win32</ArchName>
Steve Dower65e4cb12014-11-22 12:54:57 -080028
29 <!-- Root directory of the repository -->
30 <PySourcePath Condition="'$(PySourcePath)' == ''">$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)\..\))</PySourcePath>
31 <PySourcePath Condition="!HasTrailingSlash($(PySourcePath))">$(PySourcePath)\</PySourcePath>
32
33 <!-- Directory where build outputs are put -->
Steve Dower6fd76bc2016-07-16 16:13:19 -070034 <BuildPath32 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCBuild\win32\</BuildPath32>
35 <BuildPath32 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\win32\</BuildPath32>
36 <BuildPath64 Condition="'$(Py_OutDir)' == ''">$(PySourcePath)PCBuild\amd64\</BuildPath64>
37 <BuildPath64 Condition="'$(Py_OutDir)' != ''">$(Py_OutDir)\amd64\</BuildPath64>
38 <BuildPath Condition="'$(ArchName)' == 'win32'">$(BuildPath32)</BuildPath>
39 <BuildPath Condition="'$(ArchName)' == 'amd64'">$(BuildPath64)</BuildPath>
40 <BuildPath Condition="'$(BuildPath)' == ''">$(PySourcePath)PCBuild\$(ArchName)\</BuildPath>
Steve Dower65e4cb12014-11-22 12:54:57 -080041 <BuildPath Condition="!HasTrailingSlash($(BuildPath))">$(BuildPath)\</BuildPath>
42
43 <!-- Directories of external projects. tcltk is handled in tcltk.props -->
44 <ExternalsDir>$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals\`))</ExternalsDir>
Zachary Ware547d1562016-10-10 22:36:21 -050045 <sqlite3Dir>$(ExternalsDir)sqlite-3.14.2.0\</sqlite3Dir>
Steve Dower65e4cb12014-11-22 12:54:57 -080046 <bz2Dir>$(ExternalsDir)bzip2-1.0.6\</bz2Dir>
Zachary Ware16c18a32016-09-11 21:18:07 -050047 <lzmaDir>$(ExternalsDir)xz-5.2.2\</lzmaDir>
Zachary Warefc64c352017-03-03 16:07:07 -060048 <opensslDir>$(ExternalsDir)openssl-1.0.2k\</opensslDir>
Zachary Ware6fe57ad2016-02-22 04:08:51 -060049 <opensslIncludeDir>$(opensslDir)include32</opensslIncludeDir>
50 <opensslIncludeDir Condition="'$(ArchName)' == 'amd64'">$(opensslDir)include64</opensslIncludeDir>
Steve Dower65e4cb12014-11-22 12:54:57 -080051 <nasmDir>$(ExternalsDir)\nasm-2.11.06\</nasmDir>
52
53 <!-- Suffix for all binaries when building for debug -->
54 <PyDebugExt Condition="'$(PyDebugExt)' == '' and $(Configuration) == 'Debug'">_d</PyDebugExt>
55
Steve Dower940f6a82015-10-31 12:17:11 -070056 <!-- Suffix for versions/keys when building with test markers -->
57 <PyTestExt Condition="$(UseTestMarker) == 'true'">-test</PyTestExt>
58
59 <!-- Suffix for versions/keys when building for particular platforms -->
60 <PyArchExt Condition="'$(ArchName)' == 'win32'">-32</PyArchExt>
61
Steve Dower65e4cb12014-11-22 12:54:57 -080062 <!-- Full path of the resulting python.exe binary -->
63 <PythonExe Condition="'$(PythonExe)' == ''">$(BuildPath)python$(PyDebugExt).exe</PythonExe>
Steve Dower49437492015-07-08 20:18:44 -070064 </PropertyGroup>
65
Steve Dower9b33bf52017-05-23 16:25:25 -070066 <PropertyGroup Condition="$(DefaultWindowsSDKVersion) == ''">
67 <!--
68 Attempt to select the latest installed WinSDK. If we don't find any, then we will
69 let the MSBuild targets determine which one it wants to use (typically the earliest
70 possible version). Since we limit WINVER to Windows 7 anyway, it doesn't really
71 matter which WinSDK version we use.
72 -->
73 <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.15063'">10.0.15063.0</DefaultWindowsSDKVersion>
74 <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.15063'">10.0.15063.0</DefaultWindowsSDKVersion>
75 <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10586'">10.0.10586.0</DefaultWindowsSDKVersion>
76 <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10586'">10.0.10586.0</DefaultWindowsSDKVersion>
77 <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10240'">10.0.10240.0</DefaultWindowsSDKVersion>
78 <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10240'">10.0.10240.0</DefaultWindowsSDKVersion>
79 </PropertyGroup>
80
Steve Dower49437492015-07-08 20:18:44 -070081 <PropertyGroup Condition="'$(OverrideVersion)' == ''">
Steve Dower65e4cb12014-11-22 12:54:57 -080082 <!--
83 Read version information from Include\patchlevel.h. The following properties are set:
84
85 MajorVersionNumber - the '3' in '3.5.2a1'
86 MinorVersionNumber - the '5' in '3.5.2a1'
87 MicroVersionNumber - the '2' in '3.5.2a1'
88 ReleaseSerial - the '1' in '3.5.2a1'
89 ReleaseLevelName - the 'a1' in '3.5.2a1'
90 PythonVersionNumber - '3.5.2' for '3.5.2a1'
91 PythonVersion - '3.5.2a1'
92 PythonVersionHex - 0x030502a1 for '3.5.2a1'
93 ReleaseLevelNumber - 10 for alpha, 11 for beta, 12 for RC (gamma), and 15 for final
94 Field3Value - 2101 for '3.5.2a1' (== 1000*2 + 10*10 ('a') + 1)
95 -->
96 <_PatchLevelContent>$([System.IO.File]::ReadAllText(`$(PySourcePath)Include\patchlevel.h`))</_PatchLevelContent>
97 <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MAJOR_VERSION\s+(\d+)`).Groups[1].Value)</MajorVersionNumber>
98 <MinorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MINOR_VERSION\s+(\d+)`).Groups[1].Value)</MinorVersionNumber>
99 <MicroVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MICRO_VERSION\s+(\d+)`).Groups[1].Value)</MicroVersionNumber>
100 <_ReleaseLevel>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_RELEASE_LEVEL\s+PY_RELEASE_LEVEL_(\w+)`).Groups[1].Value)</_ReleaseLevel>
101 <ReleaseSerial>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_RELEASE_SERIAL\s+(\d+)`).Groups[1].Value)</ReleaseSerial>
102 <ReleaseLevelNumber>15</ReleaseLevelNumber>
103 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'ALPHA'">10</ReleaseLevelNumber>
104 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'BETA'">11</ReleaseLevelNumber>
105 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'GAMMA'">12</ReleaseLevelNumber>
106 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'ALPHA'">a$(ReleaseSerial)</ReleaseLevelName>
107 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'BETA'">b$(ReleaseSerial)</ReleaseLevelName>
108 <ReleaseLevelName Condition="$(_ReleaseLevel) == 'GAMMA'">rc$(ReleaseSerial)</ReleaseLevelName>
Steve Dower49437492015-07-08 20:18:44 -0700109 </PropertyGroup>
110
111 <PropertyGroup Condition="'$(OverrideVersion)' != ''">
112 <!--
113 Override the version number when building by specifying OverrideVersion.
114 For example:
Steve Dower65e4cb12014-11-22 12:54:57 -0800115
Steve Dower49437492015-07-08 20:18:44 -0700116 PCBuild\build.bat "/p:OverrideVersion=3.5.2a1"
117
118 Use the -V option to check your version is valid:
119
120 PCBuild\build.bat -V "/p:OverrideVersion=3.5.2a1"
121 PythonVersionNumber: 3.5.2
122 PythonVersion: 3.5.2a1
123 PythonVersionHex: 0x030502A1
124 Field3Value: 2101
125
126 Note that this only affects the version numbers embedded in resources and
127 installers, but not sys.version.
128 -->
129 <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[1].Value)</MajorVersionNumber>
130 <MinorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[2].Value)</MinorVersionNumber>
131 <MicroVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[3].Value)</MicroVersionNumber>
132 <ReleaseLevelName>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[4].Value)</ReleaseLevelName>
133 <_ReleaseLevel>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[5].Value)</_ReleaseLevel>
134 <ReleaseSerial>$([System.Text.RegularExpressions.Regex]::Match($(OverrideVersion), `(\d+)\.(\d+)\.(\d+)((a|b|rc)(\d))?`).Groups[6].Value)</ReleaseSerial>
135 <ReleaseSerial Condition="'$(ReleaseSerial)' == ''">0</ReleaseSerial>
136 <ReleaseLevelNumber>15</ReleaseLevelNumber>
137 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'a'">10</ReleaseLevelNumber>
138 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'b'">11</ReleaseLevelNumber>
139 <ReleaseLevelNumber Condition="$(_ReleaseLevel) == 'rc'">12</ReleaseLevelNumber>
140 </PropertyGroup>
141
142 <PropertyGroup>
Steve Dower65e4cb12014-11-22 12:54:57 -0800143 <PythonVersionNumber>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</PythonVersionNumber>
144 <PythonVersion>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)$(ReleaseLevelName)</PythonVersion>
145 <PythonVersionHex>$([msbuild]::BitwiseOr(
146 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)),
147 $([msbuild]::BitwiseOr(
148 $([msbuild]::Multiply($(MinorVersionNumber), 65536)),
149 $([msbuild]::BitwiseOr(
150 $([msbuild]::Multiply($(MicroVersionNumber), 256)),
151 $([msbuild]::BitwiseOr(
152 $([msbuild]::Multiply($(ReleaseLevelNumber), 16)),
153 $(ReleaseSerial)
154 ))
155 ))
156 ))
157 ))</PythonVersionHex>
158 <Field3Value>$([msbuild]::Add(
159 $(ReleaseSerial),
160 $([msbuild]::Add(
161 $([msbuild]::Multiply($(ReleaseLevelNumber), 10)),
162 $([msbuild]::Multiply($(MicroVersionNumber), 1000))
163 ))
164 ))</Field3Value>
Steve Dower940f6a82015-10-31 12:17:11 -0700165 <Field3Value Condition="$(UseTestMarker) == 'true'">$([msbuild]::Add($(Field3Value), 9000))</Field3Value>
Steve Dower65e4cb12014-11-22 12:54:57 -0800166
167 <!-- The name of the resulting pythonXY.dll (without the extension) -->
168 <PyDllName>python$(MajorVersionNumber)$(MinorVersionNumber)$(PyDebugExt)</PyDllName>
Steve Dower03a144b2014-12-15 20:45:23 -0800169
170 <!-- The version and platform tag to include in .pyd filenames -->
Steve Dower940f6a82015-10-31 12:17:11 -0700171 <PydTag Condition="$(ArchName) == 'win32'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win32</PydTag>
172 <PydTag Condition="$(ArchName) == 'amd64'">.cp$(MajorVersionNumber)$(MinorVersionNumber)-win_amd64</PydTag>
Steve Dower25879522015-01-15 09:10:16 -0800173
174 <!-- The version number for sys.winver -->
Steve Dower940f6a82015-10-31 12:17:11 -0700175 <SysWinVer>$(MajorVersionNumber).$(MinorVersionNumber)$(PyArchExt)$(PyTestExt)</SysWinVer>
Steve Dower65e4cb12014-11-22 12:54:57 -0800176 </PropertyGroup>
177
178 <!-- Displays the calculated version info -->
179 <Target Name="ShowVersionInfo">
180 <Message Importance="high" Text="PythonVersionNumber: $(PythonVersionNumber)" />
181 <Message Importance="high" Text="PythonVersion: $(PythonVersion)" />
Steve Dower49437492015-07-08 20:18:44 -0700182 <Message Importance="high" Text="PythonVersionHex: 0x$([System.UInt32]::Parse($(PythonVersionHex)).ToString(`X08`))" />
Steve Dower65e4cb12014-11-22 12:54:57 -0800183 <Message Importance="high" Text="Field3Value: $(Field3Value)" />
Steve Dower940f6a82015-10-31 12:17:11 -0700184 <Message Importance="high" Text="SysWinVer: $(SysWinVer)" />
185 <Message Importance="high" Text="PyDllName: $(PyDllName)" />
Steve Dower65e4cb12014-11-22 12:54:57 -0800186 </Target>
187</Project>