Skip to content

Commit

Permalink
Merge pull request #90 from compnerd/arm64-asm
Browse files Browse the repository at this point in the history
build: adjust for Windows ARM64
  • Loading branch information
supervacuus authored Nov 27, 2023
2 parents 3182e3b + 079636a commit abdc106
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ function(crashpad_install_dev)
endfunction()

if(WIN32)
enable_language(ASM_MASM)
if(CMAKE_SYSTEM_PROCESSOR MATCHES ARM64)
enable_language(ASM_MARMASM)
else()
enable_language(ASM_MASM)
endif()

if(MINGW)
find_program(JWASM_FOUND jwasm)
Expand Down

0 comments on commit abdc106

Please sign in to comment.