diff --git a/bin/windows/vpx/lib/arm64/libvpx.lib b/bin/windows/vpx/lib/arm64/libvpx.lib new file mode 100644 index 000000000..17f7a3294 Binary files /dev/null and b/bin/windows/vpx/lib/arm64/libvpx.lib differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 527ec220d..baddb7067 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -403,7 +403,10 @@ if( MSVC AND NOT VPX_FOUND ) # Use prebuilt library set( VPX_ROOT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../bin/Windows/vpx" ) set( VPX_INCLUDE_DIR ${VPX_ROOT_PATH}/include ) - set( VPX_LIBRARIES libvpx libcompat-to-msvc ) + set( VPX_LIBRARIES libvpx ) + if ( NOT ARM64 ) + set (VPX_LIBRARIES ${VPX_LIBRARIES} libcompat-to-msvc ) + endif() if( ARM64 ) link_directories( ${VPX_ROOT_PATH}/lib/arm64 ) elseif( X64 )