mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
- add libvpx for arm64
This commit is contained in:
parent
c9e01353b0
commit
30a0177352
2 changed files with 4 additions and 1 deletions
BIN
bin/windows/vpx/lib/arm64/libvpx.lib
Normal file
BIN
bin/windows/vpx/lib/arm64/libvpx.lib
Normal file
Binary file not shown.
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue