aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2021-08-10 12:01:26 +0200
committerSimon Rozman <simon@rozman.si>2021-08-10 12:01:26 +0200
commitb239eb6505bd3afc448e3aceeebb78b162f87495 (patch)
tree93163745f91ab88826f57baa0bf4c97801411935
parentapi: rundll32: make empty string if no instance id (diff)
downloadwintun-b239eb6505bd3afc448e3aceeebb78b162f87495.tar.xz
wintun-b239eb6505bd3afc448e3aceeebb78b162f87495.zip
props: unify import .lib of DLLs
This moves downlevelshim.lib and those .lib from any future DLLs in this repo to the matching IntDir. Signed-off-by: Simon Rozman <simon@rozman.si>
-rw-r--r--api/api.vcxproj1
-rw-r--r--wintun.props1
2 files changed, 1 insertions, 1 deletions
diff --git a/api/api.vcxproj b/api/api.vcxproj
index 9ef8ceb..2155ef5 100644
--- a/api/api.vcxproj
+++ b/api/api.vcxproj
@@ -38,7 +38,6 @@
<AdditionalDependencies>Bcrypt.lib;Cfgmgr32.lib;Iphlpapi.lib;$(IntDir)nci.lib;ntdll.lib;Setupapi.lib;shlwapi.lib;version.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>exports.def</ModuleDefinitionFile>
<SubSystem>Windows</SubSystem>
- <ImportLibrary>$(IntDir)$(TargetName).lib</ImportLibrary>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
diff --git a/wintun.props b/wintun.props
index 3a7c204..d0fcfd6 100644
--- a/wintun.props
+++ b/wintun.props
@@ -116,6 +116,7 @@
<Link>
<ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
<ProgramDatabaseFile Condition="'$(ConfigurationType)'=='Driver'">$(PackageDir)$(TargetName).pdb</ProgramDatabaseFile>
+ <ImportLibrary Condition="'$(ConfigurationType)'=='DynamicLibrary'">$(IntDir)$(TargetName).lib</ImportLibrary>
</Link>
<DriverSign>
<FileDigestAlgorithm>sha256</FileDigestAlgorithm>