build: Use $(TargetDir) and $(TargetName) macros for VC .pdb output files

Like with the curl tool project files use $(TargetDir)$(TargetName).pdb
rather than $(OutDir)$(ProjectName)d.pdb for the Program Database File
output.
This commit is contained in:
Steve Holme
2014-05-28 21:46:57 +01:00
parent b99f8e8b4e
commit 11397eb6dd
7 changed files with 48 additions and 48 deletions

View File

@@ -93,7 +93,7 @@
SuppressStartupBanner="TRUE"
AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC7\DLL Debug"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb"
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
<Tool
Name="VCMIDLTool"
@@ -145,7 +145,7 @@
LinkIncremental="1"
SuppressStartupBanner="TRUE"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb"
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
<Tool
Name="VCMIDLTool"
@@ -504,7 +504,7 @@
LinkIncremental="1"
SuppressStartupBanner="TRUE"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb"
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
<Tool
Name="VCMIDLTool"
@@ -855,7 +855,7 @@
SuppressStartupBanner="TRUE"
AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC7\DLL Debug,..\..\..\..\..\libssh2\build\Win32\VC7\DLL Debug"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb"
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
<Tool
Name="VCMIDLTool"