TO BE REVIEWED.

Have sent an email for code review already but this check-in is urgent
to fix potential build breaks.

It contains the following changes:
- Change project settings for exception_handler.vcproj so that it links in
  crash_generation.lib so that the applications using exception_handler.lib
  do not have to link to crash_generation.lib. Make these changes for all 4
  build configurations.
- Change the test app project settings to not link to crash_generation.lib
  and only link to exception_handler.lib; again for all four configurations.

These changes help the applications that are currently linking to exception_handler.lib
in that they don't have to link to one more lib to get out-of-process dump generation
functionality. In fact, even if they do not use out-of-process dump generation functionality,
after those changes, the apps will need to link with crash_generation.lib anyway in order to
build correctly. This change will eliminate that need.



git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@248 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
doshimun@gmail.com 2008-03-11 22:28:48 +00:00
parent a8b48f29dd
commit 5066fcdb42
3 changed files with 15 additions and 4 deletions

View file

@ -61,6 +61,8 @@
/>
<Tool
Name="VCLibrarianTool"
AdditionalDependencies="crash_generation.lib"
AdditionalLibraryDirectories="..\$(ConfigurationName)"
/>
<Tool
Name="VCALinkTool"
@ -122,6 +124,8 @@
/>
<Tool
Name="VCLibrarianTool"
AdditionalDependencies="crash_generation.lib"
AdditionalLibraryDirectories="..\$(ConfigurationName)"
/>
<Tool
Name="VCALinkTool"
@ -185,6 +189,8 @@
/>
<Tool
Name="VCLibrarianTool"
AdditionalDependencies="crash_generation.lib"
AdditionalLibraryDirectories="..\$(ConfigurationName)"
/>
<Tool
Name="VCALinkTool"
@ -246,6 +252,8 @@
/>
<Tool
Name="VCLibrarianTool"
AdditionalDependencies="crash_generation.lib"
AdditionalLibraryDirectories="..\$(ConfigurationName)"
/>
<Tool
Name="VCALinkTool"