LibreVNA/Software/PC_Application/LibreVNA-Test/target_wrapper.bat

11 lines
257 B
Batchfile
Raw Normal View History

2022-10-11 14:37:24 +02:00
@echo off
SetLocal EnableDelayedExpansion
2025-02-27 16:10:54 +01:00
(set PATH=C:\Qt\6.8.0\mingw_64\bin;!PATH!)
2022-10-11 14:37:24 +02:00
if defined QT_PLUGIN_PATH (
2025-02-27 16:10:54 +01:00
set QT_PLUGIN_PATH=C:\Qt\6.8.0\mingw_64\plugins;!QT_PLUGIN_PATH!
2022-10-11 14:37:24 +02:00
) else (
2025-02-27 16:10:54 +01:00
set QT_PLUGIN_PATH=C:\Qt\6.8.0\mingw_64\plugins
2022-10-11 14:37:24 +02:00
)
%*
EndLocal