Skip to content

Commit 65ebc0c

Browse files
authored
Merge pull request #364 from dplanitzer/windows_arch_amd64_fix
Fixed handling of the AMD64 processor architecture on Windows
2 parents d29ed37 + 6c86f22 commit 65ebc0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/modules/DispatchWindowsSupport.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
function(dispatch_windows_arch_spelling arch var)
33
if(${arch} STREQUAL i686)
44
set(${var} x86 PARENT_SCOPE)
5-
elseif(${arch} STREQUAL x86_64)
5+
elseif(${arch} STREQUAL x86_64 OR ${arch} STREQUAL AMD64)
66
set(${var} x64 PARENT_SCOPE)
77
elseif(${arch} STREQUAL armv7)
88
set(${var} arm PARENT_SCOPE)

0 commit comments

Comments
 (0)