mirror of
https://github.com/curl/curl.git
synced 2026-08-25 20:03:36 +03:00
build: Use $(TargetDir) and $(TargetName) macros for VC .lib output files
As with commit 11397eb6dd, use $(TargetDir) and $(TargetName) for the
Import Library output rather than $(OutDir)\$(ProjectName)d.lib and
$(OutDir)\$(ProjectName).lib.
This commit is contained in:
parent
11397eb6dd
commit
2a615a2b64
7 changed files with 96 additions and 96 deletions
|
|
@ -41,7 +41,7 @@
|
|||
SuppressStartupBanner="TRUE"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC7\DLL Release,..\..\..\..\..\libssh2\build\Win32\VC7\DLL Release"
|
||||
SetChecksum="TRUE"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName).lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
|
|
@ -94,7 +94,7 @@
|
|||
AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC7\DLL Debug"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
SuppressStartupBanner="TRUE"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
|
|
@ -279,7 +279,7 @@
|
|||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
SetChecksum="TRUE"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName).lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
|
|
@ -453,7 +453,7 @@
|
|||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
SetChecksum="TRUE"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName).lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
SuppressStartupBanner="TRUE"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
|
|
@ -598,7 +598,7 @@
|
|||
SuppressStartupBanner="TRUE"
|
||||
AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC7\DLL Release"
|
||||
SetChecksum="TRUE"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName).lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="NDEBUG"
|
||||
|
|
@ -856,7 +856,7 @@
|
|||
AdditionalLibraryDirectories="..\..\..\..\..\openssl\build\Win32\VC7\DLL Debug,..\..\..\..\..\libssh2\build\Win32\VC7\DLL Debug"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
|
||||
ImportLibrary="$(OutDir)\$(ProjectName)d.lib"/>
|
||||
ImportLibrary="$(TargetDir)$(TargetName).lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="_DEBUG"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue