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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user