mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-22 19:01:12 +00:00
- allow targeting ARM64 on Windows
This commit is contained in:
parent
a6a02a2a6c
commit
7d6f3797c4
5 changed files with 2 additions and 0 deletions
BIN
bin/windows/zmusic/arm64/zmusic.dll
Normal file
BIN
bin/windows/zmusic/arm64/zmusic.dll
Normal file
Binary file not shown.
BIN
bin/windows/zmusic/arm64/zmusic.lib
Normal file
BIN
bin/windows/zmusic/arm64/zmusic.lib
Normal file
Binary file not shown.
BIN
bin/windows/zmusic/arm64/zmusiclite.dll
Normal file
BIN
bin/windows/zmusic/arm64/zmusiclite.dll
Normal file
Binary file not shown.
BIN
bin/windows/zmusic/arm64/zmusiclite.lib
Normal file
BIN
bin/windows/zmusic/arm64/zmusiclite.lib
Normal file
Binary file not shown.
|
@ -27,6 +27,8 @@ if( MSVC AND NOT ZMUSIC_FOUND )
|
|||
set( ZMUSIC_LIBRARIES zmusic )
|
||||
if( ${ZDOOM_TARGET_ARCH} MATCHES "x86_64" )
|
||||
link_directories( ${ZMUSIC_ROOT_PATH}/64bit )
|
||||
elseif( ${ZDOOM_TARGET_ARCH} MATCHES "arm64" )
|
||||
link_directories( ${ZMUSIC_ROOT_PATH}/arm64 )
|
||||
else()
|
||||
link_directories( ${ZMUSIC_ROOT_PATH}/32bit )
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue