From 9e70773e0ef20caf4cf68aad9b1fc2de97e1d6ec Mon Sep 17 00:00:00 2001 From: Hanseul Jun Date: Thu, 24 Sep 2020 12:12:50 -0700 Subject: [libvpx] allow arm64 as target architecture (#13569) * [libvpx] allow arm64 as target architecture * [libvpx] bump port version to 2 --- ports/libvpx/portfile.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ports/libvpx/portfile.cmake b/ports/libvpx/portfile.cmake index a3adee4a9..5e36511eb 100644 --- a/ports/libvpx/portfile.cmake +++ b/ports/libvpx/portfile.cmake @@ -131,6 +131,8 @@ else() set(LIBVPX_TARGET_ARCH "x86") elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL x64) set(LIBVPX_TARGET_ARCH "x86_64") + elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL arm64) + set(LIBVPX_TARGET_ARCH "arm64") else() message(FATAL_ERROR "libvpx does not support architecture ${VCPKG_TARGET_ARCHITECTURE}") endif() -- cgit v1.2.3