vcpkg/ports/qtbase/windeployqt.debug.bat
reito 1c66ab1814
[qtbase] Fix a bug that will cause deploy failed on Debug profile (#28516)
* fix not deploying on debug build

* fix not deploying on debug build

* fix not deploying on debug build
2022-12-28 12:36:09 -08:00

11 lines
254 B
Batchfile

@echo off
setlocal enabledelayedexpansion
set mypath=%~dp0
set mypath=%mypath:~0,-1%
set BAKCD=!CD!
cd /D %mypath%\..\..\..\debug\bin
set PATH=!CD!;%PATH%
cd %BAKCD%
"%mypath%\windeployqt.exe" --qtpaths "%mypath%\qtpaths.debug.bat" %*
endlocal