aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/qttools/windeployqt.debug.bat
blob: d205fe3bcaa0b95ee2e8a8680f8d0d61178e2cae (plain)
1
2
3
4
5
6
7
8
9
10
@echo off
setlocal enabledelayedexpansion
set mypath=%~dp0
set mypath=%mypath:~0,-1%
set BAKCD=!CD!
cd /D "%mypath%\..\..\..\debug\bin"
set PATH=!CD!;%PATH%
"%mypath%\windeployqt.exe" --qmake "%mypath%\qmake.debug.bat" %*
cd /D "%BAKCD%"
endlocal