aboutsummaryrefslogtreecommitdiffstats
path: root/wireguard-nt.proj
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2021-10-21 11:37:55 +0200
committerSimon Rozman <simon@rozman.si>2021-10-21 11:44:09 +0200
commit3fa1a8c60f74ad70899b7d3081ef534e6e053fcb (patch)
tree5af1067278bf4beb5db08cc4d8e4de667bccc7f8 /wireguard-nt.proj
parentdriver: PEER_UPDATE is supposed to be UPDATE_ONLY (diff)
downloadwireguard-nt-3fa1a8c60f74ad70899b7d3081ef534e6e053fcb.tar.xz
wireguard-nt-3fa1a8c60f74ad70899b7d3081ef534e6e053fcb.zip
proj: stop building for arm32
This does not remove 32-bit ARM compilation support out of the project yet. Shipping of 32-bit ARM drivers became a real challenge: - Microsoft changed policy to prohibit EV-signed drivers - Attestation signing is not supported for this platform - Setting up Windows 8 ARM HCK to get WHQL certification requires a lot of effort if doable in 2021 at all. Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to '')
-rw-r--r--wireguard-nt.proj5
1 files changed, 2 insertions, 3 deletions
diff --git a/wireguard-nt.proj b/wireguard-nt.proj
index f809e53..e66f34f 100644
--- a/wireguard-nt.proj
+++ b/wireguard-nt.proj
@@ -15,8 +15,8 @@
<Import Project="wireguard-nt.props" />
<Import Project="wireguard-nt.props.user" Condition="exists('wireguard-nt.props.user')" />
- <Target Name="Driver" DependsOnTargets="Driver-x86;Driver-amd64;Driver-arm;Driver-arm64" />
- <Target Name="Dll" DependsOnTargets="Dll-x86;Dll-amd64;Dll-arm;Dll-arm64" />
+ <Target Name="Driver" DependsOnTargets="Driver-x86;Driver-amd64;Driver-arm64" />
+ <Target Name="Dll" DependsOnTargets="Dll-x86;Dll-amd64;Dll-arm64" />
<Target Name="Clean">
<RemoveDir Directories="$(Configuration)\amd64\" />
<RemoveDir Directories="$(Configuration)\arm\" />
@@ -77,7 +77,6 @@
<ZipFilesSrc Include="README.md" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\README.md" />
<ZipFilesSrc Include="api\wireguard.h" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\include\wireguard.h" />
<ZipFilesSrc Include="$(Configuration)\amd64\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\amd64\wireguard.dll" />
- <ZipFilesSrc Include="$(Configuration)\arm\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\arm\wireguard.dll" />
<ZipFilesSrc Include="$(Configuration)\arm64\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\arm64\wireguard.dll" />
<ZipFilesSrc Include="$(Configuration)\x86\wireguard.dll" /><ZipFilesDst Include="$(ZipIntDir)wireguard-nt\bin\x86\wireguard.dll" />
</ItemGroup>