@echo off
rem Purpose:  To set up QAC to run on the command line

rem Special Notes:
rem If you are using Windows '95 and you run out of environment
rem space you can adjust its size as follows (in config.sys):
rem shell=c:\command.com /e:1024

echo.
echo Setting up QAC environment...
echo.

rem Set QACPATH       to point to QAC root directory
set QACPATH=C:\PRQA\QAC-8.1.2-R\

rem Set QACBIN        to point to location of QAC executables
set QACBIN=%QACPATH%bin
echo QACBIN           now points to %QACBIN%

rem Set QACOUTPATH    to point to location of .err and .met files
set QACOUTPATH=%TEMP%
echo QACOUTPATH       now points to %QACOUTPATH%

rem Set QACHELPFILES  to point to location of HTML reference files
set QACHELPFILES=%QACPATH%help
echo QACHELPFILES     now points to %QACHELPFILES%

rem Set QACTEMP       to point to location of QAC temp directory
set QACTEMP=%TEMP%
echo QACTEMP          now points to %QACTEMP%

rem Modify existing path:
set path=%QACBIN%;%path%

echo.
echo Path is now:
echo %path%
