We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 377ed0a commit 54691f5Copy full SHA for 54691f5
.github/scripts/windows/build_task.bat
@@ -23,9 +23,11 @@ if %errorlevel% neq 0 exit /b 3
23
rem Copy LibUV from vcpkg to deps directory
24
if not exist "%DEPS_DIR%\include\libuv" mkdir "%DEPS_DIR%\include\libuv"
25
if not exist "%DEPS_DIR%\lib" mkdir "%DEPS_DIR%\lib"
26
+if not exist "%DEPS_DIR%\bin" mkdir "%DEPS_DIR%\bin"
27
copy "C:\vcpkg\installed\x64-windows\include\uv.h" "%DEPS_DIR%\include\libuv\uv.h"
28
xcopy /E /I /H /Y "C:\vcpkg\installed\x64-windows\include\uv" "%DEPS_DIR%\include\libuv\uv\"
29
copy "C:\vcpkg\installed\x64-windows\lib\uv.lib" "%DEPS_DIR%\lib\libuv.lib"
30
+copy "C:\vcpkg\installed\x64-windows\bin\uv.dll" "%DEPS_DIR%\bin\uv.dll"
31
32
cmd /c buildconf.bat --force
33
if %errorlevel% neq 0 exit /b 3
0 commit comments