11 lines
257 B
Batchfile
11 lines
257 B
Batchfile
@echo off
|
|
SetLocal EnableDelayedExpansion
|
|
(set PATH=C:\Qt\6.2.4\mingw_64\bin;!PATH!)
|
|
if defined QT_PLUGIN_PATH (
|
|
set QT_PLUGIN_PATH=C:\Qt\6.2.4\mingw_64\plugins;!QT_PLUGIN_PATH!
|
|
) else (
|
|
set QT_PLUGIN_PATH=C:\Qt\6.2.4\mingw_64\plugins
|
|
)
|
|
%*
|
|
EndLocal
|