2022-10-11 20:37:24 +08:00
|
|
|
@echo off
|
|
|
|
SetLocal EnableDelayedExpansion
|
2023-03-28 17:28:03 +08:00
|
|
|
(set PATH=C:\Qt\6.2.4\mingw_64\bin;!PATH!)
|
2022-10-11 20:37:24 +08:00
|
|
|
if defined QT_PLUGIN_PATH (
|
2023-03-28 17:28:03 +08:00
|
|
|
set QT_PLUGIN_PATH=C:\Qt\6.2.4\mingw_64\plugins;!QT_PLUGIN_PATH!
|
2022-10-11 20:37:24 +08:00
|
|
|
) else (
|
2023-03-28 17:28:03 +08:00
|
|
|
set QT_PLUGIN_PATH=C:\Qt\6.2.4\mingw_64\plugins
|
2022-10-11 20:37:24 +08:00
|
|
|
)
|
|
|
|
%*
|
|
|
|
EndLocal
|