LibreCAD / scripts /set-windows-env.bat
AbdulElahGwaith's picture
Upload folder using huggingface_hub
a5ffdcd verified
@echo off
if "%Qt6_Dir%"=="" goto SetEnv
if "%NSIS_DIR%"=="" goto SetEnv
goto Exit
:SetEnv
set Qt6_Dir=D:\a\LibreCAD\Qt\6.9.0
set NSIS_DIR=C:\Program Files (x86)\NSIS
if exist custom-windows.bat call custom-windows.bat
set PATH=%Qt6_Dir%\%MINGW_VER%\bin;%Qt6_Dir%\..\Tools\%MINGW_VER%\bin;%NSIS_DIR%;%PATH%
:Exit
echo on