aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-08-01 15:29:01 +0000
committerJason A. Donenfeld <Jason@zx2c4.com>2019-08-02 09:43:32 +0000
commit47a2a980a857487685f6f6fe612d995ee177a3d1 (patch)
tree67455044e10cc3869b70cd303d8020c19a33d701
parentUse reference counter and KEVENT instead of remove locks (diff)
downloadwintun-47a2a980a857487685f6f6fe612d995ee177a3d1.tar.xz
wintun-47a2a980a857487685f6f6fe612d995ee177a3d1.zip
Do not rebuild driver on installer library build
This commit is in many ways wrong, but when we're dealing with whql imports, there's often a large gap in time, and it's useful to be able to just restore everything exactly how it was prior and then build only installer.dll and the msm. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--wintun.proj6
1 files changed, 3 insertions, 3 deletions
diff --git a/wintun.proj b/wintun.proj
index cc66152..256153c 100644
--- a/wintun.proj
+++ b/wintun.proj
@@ -50,15 +50,15 @@
<!--
installer.dll Building
-->
- <Target Name="Installer-x86" DependsOnTargets="Driver-x86"
+ <Target Name="Installer-x86"
Outputs="x86\Release\installer.dll">
<MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=Win32"/>
</Target>
- <Target Name="Installer-amd64" DependsOnTargets="Driver-amd64"
+ <Target Name="Installer-amd64"
Outputs="amd64\Release\installer.dll">
<MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=x64"/>
</Target>
- <Target Name="Installer-arm64" DependsOnTargets="Driver-arm64"
+ <Target Name="Installer-arm64"
Outputs="arm64\Release\installer.dll">
<MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=ARM64"/>
</Target>