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

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


http://hg.python.org/cpython/rev/7a7ff2015099
changeset:   89495:7a7ff2015099
branch:      3.3
parent:      89482:52743dc788e6
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Mar 06 13:21:45 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.

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