We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c623a2 commit c0bfa20Copy full SHA for c0bfa20
1 file changed
.github/workflows/windows.yml
@@ -33,7 +33,18 @@ jobs:
33
34
- name: Install zlib via vcpkg
35
run: .\vcpkg\vcpkg install zlib
36
-
+
37
+ - name: Setup MSYS2 + Autotools
38
+ uses: msys2/setup-msys2@v2
39
+ with:
40
+ update: true
41
+ install: |
42
+ msys/autoconf
43
+ msys/automake
44
+ msys/libtool
45
+ msys/m4
46
+ msys/make # HTSlib’s build uses `make`
47
48
- name: Configure & build library
49
run: |
50
cmake -DCMAKE_TOOLCHAIN_FILE="vcpkg\scripts\buildsystems\vcpkg.cmake" -DCMAKE_INSTALL_PREFIX="local" -S . -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
0 commit comments