Fix the Windows ARM64 build

* Remove arch constraints in a CMake block.
* Convert some tab identation to spaces.
This commit is contained in:
Fabrice de Gans 2022-12-27 11:14:11 -08:00 committed by Rafael Kitover
parent e10bf7bc4b
commit 3c41b68d51
2 changed files with 5 additions and 3 deletions

View File

@ -47,7 +47,9 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "[xX]86|i[3-9]86|[aA][mM][dD]64")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "[aA][aA][rR][cC][hH]|[aA][rR][mM]")
if(CMAKE_C_SIZEOF_DATA_PTR EQUAL 4) # 32 bit
set(ARCH_NAME arm32)
set(WINARCH arm)
elseif(CMAKE_C_SIZEOF_DATA_PTR EQUAL 8)
set(ARCH_NAME arm64)
set(WINARCH arm64)
endif()
endif()

View File

@ -109,7 +109,7 @@ endif()
# on VS with vcpkg we can't use FindwxWidgets, we have to set everything up
# manually because the package is broken
if(WIN32 AND CMAKE_TOOLCHAIN_FILE MATCHES vcpkg AND (X86_32 OR X86_64))
if(WIN32 AND CMAKE_TOOLCHAIN_FILE MATCHES vcpkg)
# set up wxwidgets stuff
set(libtype u)
unset(arch_suffix)