Skip to content

Commit 8fe2ce8

Browse files
committed
[MSWin] Link all vcpkg DLLs except for readline
1 parent 65ccae5 commit 8fe2ce8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ jobs:
106106
del *.env
107107
- name: link libraries
108108
run: |
109-
for %%I in (libffi yaml) do mklink %%I.dll C:\vcpkg\installed\x64-windows\bin\%%I.dll
109+
for %%I in (C:\vcpkg\installed\x64-windows\bin\*.dll) do (
110+
if not %%~nI == readline mklink %%~nxI %%I
111+
)
110112
- name: Configure
111113
run: >-
112114
../src/win32/configure.bat --disable-install-doc

0 commit comments

Comments
 (0)