11 lines
266 B
Batchfile
11 lines
266 B
Batchfile
![]() |
@echo off
|
||
|
SetLocal EnableDelayedExpansion
|
||
|
(set PATH=C:\Qt\5.15.1\mingw81_64\bin;!PATH!)
|
||
|
if defined QT_PLUGIN_PATH (
|
||
|
set QT_PLUGIN_PATH=C:\Qt\5.15.1\mingw81_64\plugins;!QT_PLUGIN_PATH!
|
||
|
) else (
|
||
|
set QT_PLUGIN_PATH=C:\Qt\5.15.1\mingw81_64\plugins
|
||
|
)
|
||
|
%*
|
||
|
EndLocal
|