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>
This commit is contained in:
Jason A. Donenfeld 2019-08-01 15:29:01 +00:00
parent 799413a776
commit 47a2a980a8

View File

@ -50,15 +50,15 @@
<!-- <!--
installer.dll Building installer.dll Building
--> -->
<Target Name="Installer-x86" DependsOnTargets="Driver-x86" <Target Name="Installer-x86"
Outputs="x86\Release\installer.dll"> Outputs="x86\Release\installer.dll">
<MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=Win32"/> <MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=Win32"/>
</Target> </Target>
<Target Name="Installer-amd64" DependsOnTargets="Driver-amd64" <Target Name="Installer-amd64"
Outputs="amd64\Release\installer.dll"> Outputs="amd64\Release\installer.dll">
<MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=x64"/> <MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=x64"/>
</Target> </Target>
<Target Name="Installer-arm64" DependsOnTargets="Driver-arm64" <Target Name="Installer-arm64"
Outputs="arm64\Release\installer.dll"> Outputs="arm64\Release\installer.dll">
<MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=ARM64"/> <MSBuild Projects="installer\installer.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=ARM64"/>
</Target> </Target>