Skip to content

Commit

Permalink
- allow targeting ARM64 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Dec 4, 2020
1 parent a6a02a2 commit 7d6f379
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 0 deletions.
Binary file added bin/windows/zmusic/arm64/zmusic.dll
Binary file not shown.
Binary file added bin/windows/zmusic/arm64/zmusic.lib
Binary file not shown.
Binary file added bin/windows/zmusic/arm64/zmusiclite.dll
Binary file not shown.
Binary file added bin/windows/zmusic/arm64/zmusiclite.lib
Binary file not shown.
2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Expand Up @@ -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()
Expand Down

0 comments on commit 7d6f379

Please sign in to comment.