Add Windows ARM64 to the build

This commit is contained in:
Matthew Leibowitz 2025-03-07 18:43:04 +02:00 committed by GitHub
parent e7ea71be03
commit 6b5ea498f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,3 +98,8 @@ jobs:
- name: Build Win32 shared x64 library
run: cmake --build build-win32-shared-x64 --parallel
- name: Configure Win32 shared arm64 library
run: cmake -B build-win32-shared-arm64 -G "Visual Studio 17 2022" -A arm64 -D BUILD_SHARED_LIBS=ON
- name: Build Win32 shared arm64 library
run: cmake --build build-win32-shared-arm64 --parallel