From 11397eb6dd44457d7b0c1a83b539f800dff971d2 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Wed, 28 May 2014 21:46:57 +0100 Subject: 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. --- projects/Windows/VC9/lib/libcurl.tmpl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'projects/Windows/VC9/lib') diff --git a/projects/Windows/VC9/lib/libcurl.tmpl b/projects/Windows/VC9/lib/libcurl.tmpl index 515719902..ee01d2815 100644 --- a/projects/Windows/VC9/lib/libcurl.tmpl +++ b/projects/Windows/VC9/lib/libcurl.tmpl @@ -80,7 +80,7 @@ AdditionalLibraryDirectories="" ManifestFile="$(IntDir)\$(TargetFileName).intermediate.manifest" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -171,7 +171,7 @@ SuppressStartupBanner="true" AdditionalLibraryDirectories="" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -724,7 +724,7 @@ AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC9\DLL Debug" ManifestFile="$(IntDir)\$(TargetFileName).intermediate.manifest" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -815,7 +815,7 @@ SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win64\VC9\DLL Debug" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -1086,7 +1086,7 @@ AdditionalLibraryDirectories="" ManifestFile="$(IntDir)\$(TargetFileName).intermediate.manifest" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -1177,7 +1177,7 @@ SuppressStartupBanner="true" AdditionalLibraryDirectories="" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -1448,7 +1448,7 @@ AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC9\DLL Debug;..\..\..\..\..\libssh2\build\Win32\VC9\DLL Debug" ManifestFile="$(IntDir)\$(TargetFileName).intermediate.manifest" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" @@ -1539,7 +1539,7 @@ SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win64\VC9\DLL Debug;..\..\..\..\..\libssh2\build\Win64\VC9\DLL Debug" GenerateDebugInformation="true" - ProgramDatabaseFile="$(OutDir)\$(ProjectName)d.pdb" + ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0" ImportLibrary="$(OutDir)\$(ProjectName)d.lib" -- cgit v1.2.3