summaryrefslogtreecommitdiffstats
path: root/PCbuild/pcbuild.proj
diff options
context:
space:
mode:
authorPaul Monson <paulmon@users.noreply.github.com>2019-02-14 16:31:30 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2019-02-14 16:31:30 (GMT)
commit8a1657b93469580ef345c7c91738587f3d76e87d (patch)
tree153202aa02cbd97a4214a4a265b35662f2b9c76f /PCbuild/pcbuild.proj
parentbb3c05d7efca8d23bf39bc2640297ba2598899f3 (diff)
downloadcpython-8a1657b93469580ef345c7c91738587f3d76e87d.zip
cpython-8a1657b93469580ef345c7c91738587f3d76e87d.tar.gz
cpython-8a1657b93469580ef345c7c91738587f3d76e87d.tar.bz2
bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825)
This change adds the necessary items to the build projects to avoid erroring out right at the start. It does not add _support_ for targeting Windows on ARM32, but is a necessary prerequisite for adding it.
Diffstat (limited to 'PCbuild/pcbuild.proj')
-rw-r--r--PCbuild/pcbuild.proj2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pcbuild.proj b/PCbuild/pcbuild.proj
index dbe30dd..574c4f0 100644
--- a/PCbuild/pcbuild.proj
+++ b/PCbuild/pcbuild.proj
@@ -70,7 +70,7 @@
</Projects>
<!-- _freeze_importlib -->
- <Projects2 Include="_freeze_importlib.vcxproj" />
+ <Projects2 Condition="$(Platform) != 'ARM'" Include="_freeze_importlib.vcxproj" />
<!-- python[w].exe -->
<Projects2 Include="python.vcxproj;pythonw.vcxproj" />
<Projects2 Include="python_uwp.vcxproj;pythonw_uwp.vcxproj" Condition="$(IncludeUwp)" />