@echo off :: Example setup file for generating the installer :: => Copy this to setup.bat, and then edit values below to :: be meaninful for you own computer setup :: Probably need Visual Studio on your command line as well (need to check) echo. echo **** echo * Setting environment variables for the Expeditee Release Kit echo **** echo * echo *=== :: Set Visual Studio environment here by calling vcvars. MS SDK not needed for Expeditee ::call "C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin\SetEnv.cmd" call "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" echo Called vcvars 32 bit set JAVA_HOME=C:\Program Files\Java\jdk1.8.0 if not exist "%JAVA_HOME%\" ( echo ***** JAVA_HOME %JAVA_HOME% does not exist. Set this in %0 exit /B 1 ) set PATH=%JAVA_HOME%\bin;%PATH% echo Adding in JDK 1.8.1 set ANT_HOME=C:\cygwin2013\home\davidb\research\packages\ant-1.9.2 if not exist "%ANT_HOME%\" ( echo ***** ANT_HOME %ANT_HOME% does not exist. Set this in %0 exit /B 1 ) set PATH=%ANT_HOME%\bin;%PATH% echo Adding in Ant 1.9 set "SVN_HOME=C:\Program Files\SlikSvn" if not exist "%SVN_HOME%\" ( echo ***** Can't find SVN in %SVN_HOME%. Set SVN path in %0 exit /B 1 ) set PATH=%SVN_HOME%\bin;%PATH% echo Adding in Slik SVN 1.8.5 set PATH=%CD%\bin;%PATH% echo Adding RKE scripts into PATH echo *=== echo. echo **** echo * To compile, type: echo * echo * rke compile echo **** :end