[Python-checkins] cpython (merge 3.3 -> default): Make pywlauncher.vcxproj depend on make_versioninfo.vcxproj.

zach.ware python-checkins at python.org
Thu Mar 6 20:28:36 CET 2014


http://hg.python.org/cpython/rev/47f37a688c4c
changeset:   89496:47f37a688c4c
parent:      89494:964c4899efc4
parent:      89495:7a7ff2015099
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Mar 06 13:28:08 2014 -0600
summary:
  Make pywlauncher.vcxproj depend on make_versioninfo.vcxproj.

pylauncher.vcxproj already has the same dependency, and adding it to
the pywlauncher project eliminates the possibility of the pywlauncher
build failing when building the solution in parallel.  In particular,
pywlauncher may fail to build when doing a "Rebuild Solution" from the
VS Build menu.

Merge with 3.3.

files:
  PCbuild/pywlauncher.vcxproj |  5 +++++
  1 files changed, 5 insertions(+), 0 deletions(-)


diff --git a/PCbuild/pywlauncher.vcxproj b/PCbuild/pywlauncher.vcxproj
--- a/PCbuild/pywlauncher.vcxproj
+++ b/PCbuild/pywlauncher.vcxproj
@@ -240,6 +240,11 @@
   <ItemGroup>
     <ResourceCompile Include="..\PC\pylauncher.rc" />
   </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="make_versioninfo.vcxproj">
+      <Project>{f0e0541e-f17d-430b-97c4-93adf0dd284e}</Project>
+    </ProjectReference>
+  </ItemGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
   <ImportGroup Label="ExtensionTargets">
   </ImportGroup>

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list