mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
c648581695
* move windeploylogic to qtbase. fix qtpaths for debug. * fix missing stuff * version stuff * add supports !uwp since qt6 dropped uwp support * version stuff * add newline. Fix BAKCD * version stuff * use enabledelayedexpansion * version stuff * use cd /D * version stuff Co-authored-by: Alexander Neumann <you@example.com>
11 lines
254 B
Batchfile
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%
|
|
"%mypath%\windeployqt.exe" --qtpaths "%mypath%\qtpaths.debug.bat" %*
|
|
cd %BAKCD%
|
|
endlocal
|