source: other-projects/expeditee-release-kits/rke-setup.bat.in@ 29230

Last change on this file since 29230 was 29230, checked in by ak19, 10 years ago

Updating bat.in file to include a call to vcvars.bat to get expeditee generated on windows again. Adding in the create-expeditee.bat that is used on the windows release machine to run the scripts that generate the nightly binaries. One of its tasks is to ensure the expeditee snapshot folder exists and contains the rke-build.properties file. A template .in version of this file has now been added. The create-expeditee.bat along with a customised rke-setup.bat now follow the instructions in the README.txt to generate a binary.

File size: 963 bytes
Line 
1@echo off
2
3: Example setup file for generating the installer
4: => Copy this to setup.bat, and then edit values below to
5: be meaninful for you own computer setup
6
7: Probably need Visual Studio on your command line as well (need to check)
8
9
10echo.
11echo ****
12echo * Setting environment variables for the Expeditee Release Kit
13echo ****
14echo *
15echo *===
16
17
18:: Set VCVars bat file here
19call "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
20called vcvars
21
22set JAVA_HOME=C:\Program Files\Java\jdk1.8.0
23set PATH=%JAVA_HOME%\bin;%PATH%
24echo Adding in JDK 1.8.1
25
26set ANT_HOME=C:\cygwin2013\home\davidb\research\packages\ant-1.9.2
27set PATH=%ANT_HOME%\bin;%PATH%
28echo Adding in Ant 1.9
29
30set "SVN_HOME=C:\Program Files\SlikSvn"
31set PATH=%SVN_HOME%\bin;%PATH%
32echo Adding in Slik SVN 1.8.5
33
34set PATH=%CD%\bin;%PATH%
35echo Adding RKE scripts into PATH
36echo *===
37
38
39echo.
40echo ****
41echo * To compile, type:
42echo *
43echo * rke compile
44echo ****
45
46
47
48
Note: See TracBrowser for help on using the repository browser.