mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 19:39:01 +08:00
10 lines
222 B
Batchfile
10 lines
222 B
Batchfile
|
@echo off
|
||
|
setlocal
|
||
|
set mypath=%~dp0
|
||
|
set mypath=%mypath:~0,-1%
|
||
|
cd %mypath%\..\..\..\debug\bin
|
||
|
set BAKCD=%CD%
|
||
|
set PATH=%CD%;%PATH%
|
||
|
"%mypath%\windeployqt.exe" --qmake "%mypath%\qmake.debug.bat" %*
|
||
|
cd %BAKCD%
|
||
|
endlocal
|