summaryrefslogtreecommitdiff
path: root/PCbuild/pcbuild.proj
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-07-13 19:58:21 -0700
committerSteve Dower <steve.dower@microsoft.com>2016-07-13 19:58:21 -0700
commit945863a691275a7088a4a9227bb35791390ec02a (patch)
treedc53f2c46a2d164a9d9109bc8322b33cfb64e331 /PCbuild/pcbuild.proj
parent252e9ed9744b32fc9f21eae2d58c1afcdb1fd524 (diff)
downloadcpython-git-945863a691275a7088a4a9227bb35791390ec02a.tar.gz
Fixes build order and lingering intermediate files.
Diffstat (limited to 'PCbuild/pcbuild.proj')
-rw-r--r--PCbuild/pcbuild.proj8
1 files changed, 6 insertions, 2 deletions
diff --git a/PCbuild/pcbuild.proj b/PCbuild/pcbuild.proj
index 36621c910c..a66184896a 100644
--- a/PCbuild/pcbuild.proj
+++ b/PCbuild/pcbuild.proj
@@ -33,8 +33,6 @@
<Projects Include="pythoncore.vcxproj">
<BuildInParallel>false</BuildInParallel>
</Projects>
- <!-- python[w].exe -->
- <Projects Include="python.vcxproj;pythonw.vcxproj" />
<!-- python3.dll -->
<Projects Include="python3dll.vcxproj" />
<!-- py[w].exe -->
@@ -58,12 +56,18 @@
<!-- Disable parallel build for test modules -->
<BuildInParallel>false</BuildInParallel>
</Projects>
+
+ <!-- python[w].exe -->
+ <Projects Include="python.vcxproj;pythonw.vcxproj">
+ <BuildInParallel>false</BuildInParallel>
+ </Projects>
</ItemGroup>
<Target Name="Build">
<MSBuild Projects="@(Projects)"
Properties="Configuration=%(Configuration);Platform=%(Platform);%(Properties)"
BuildInParallel="%(BuildInParallel)"
+ StopOnFirstFailure="true"
Targets="%(BuildTarget)" />
</Target>