File: set-windows-env.bat

package info (click to toggle)
librecad 2.1.2-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 149,176 kB
  • sloc: cpp: 183,266; ansic: 3,106; sh: 249; makefile: 24; xml: 20
file content (16 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off

if "%Qt_DIR%"=="" goto SetEnv
if "%NSIS_DIR%"=="" goto SetEnv
goto Exit

:SetEnv
set Qt_DIR=C:\Qt\Qt5.4.0\5.4
set NSIS_DIR=C:\Program Files (x86)\NSIS
set MINGW_VER=mingw491_32

if exist custom-windows.bat call custom-windows.bat
set PATH=%Qt_DIR%\%MINGW_VER%\bin;%Qt_DIR%\..\Tools\%MINGW_VER%\bin;%NSIS_DIR%;%PATH%

:Exit
echo on