pineapple/externals/vcpkg/ports/qttools/windeployqt.debug.bat

11 lines
250 B
Batchfile
Raw Normal View History

2022-07-23 03:01:36 +02:00
@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 %BAKCD%
endlocal