diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-03-06 19:28:08 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-03-06 19:28:08 (GMT) |
commit | 5ccca9516a5b0e052593631dc47268716c306b8e (patch) | |
tree | f7fa396f11ade32c3942f826c73b4ddd3399076e /PCbuild | |
parent | beec02ac0665d34d592f23c8c8f10ec3b41f8fe9 (diff) | |
parent | 54d04a46f3a0c274fa971ae457134529b22eb64e (diff) | |
download | cpython-5ccca9516a5b0e052593631dc47268716c306b8e.zip cpython-5ccca9516a5b0e052593631dc47268716c306b8e.tar.gz cpython-5ccca9516a5b0e052593631dc47268716c306b8e.tar.bz2 |
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.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pywlauncher.vcxproj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/PCbuild/pywlauncher.vcxproj b/PCbuild/pywlauncher.vcxproj index 08e35a7..96ea421 100644 --- 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> |