From fd017e51e6e9f8cabe599015535a6577209ec79c Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 2 Mar 2018 21:52:13 +0100 Subject: [PATCH] fixup! vcpkg: get MSVC dependencies with vcpkg rather than nuget We also have to copy the .dll files into t/helper/ so that the .exe files in that directory work correctly. Signed-off-by: Johannes Schindelin --- compat/vcbuild/vcpkg_copy_dlls.bat | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compat/vcbuild/vcpkg_copy_dlls.bat b/compat/vcbuild/vcpkg_copy_dlls.bat index 84409b7945..13661c14f8 100644 --- a/compat/vcbuild/vcpkg_copy_dlls.bat +++ b/compat/vcbuild/vcpkg_copy_dlls.bat @@ -33,4 +33,7 @@ REM ================================================================ xcopy /e/s/v/y %inst%\bin\*.dll ..\..\ xcopy /e/s/v/y %inst%\bin\*.pdb ..\..\ + xcopy /e/s/v/y %inst%\bin\*.dll ..\..\t\helper\ + xcopy /e/s/v/y %inst%\bin\*.pdb ..\..\t\helper\ + EXIT /B 0