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

Last change on this file since 28935 was 28827, checked in by davidb, 10 years ago

Moved to a higher version of ant to see if that helped with a build.xml error message

File size: 847 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
17set JAVA_HOME=C:\Program Files\Java\jdk1.8.0
18set PATH=%JAVA_HOME%\bin;%PATH%
19echo Adding in JDK 1.8.1
20
21set ANT_HOME=C:\cygwin2013\home\davidb\research\packages\ant-1.9.2
22set PATH=%ANT_HOME%\bin;%PATH%
23echo Adding in Ant 1.9
24
25set "SVN_HOME=C:\Program Files\SlikSvn"
26set PATH=%SVN_HOME%\bin;%PATH%
27echo Adding in Slik AVN 1.8.5
28
29set PATH=%CD%\bin;%PATH%
30echo Adding RKE scripts into PATH
31echo *===
32
33
34echo.
35echo ****
36echo * To compile, type:
37echo *
38echo * rke compile
39echo ****
40
41
42
43
Note: See TracBrowser for help on using the repository browser.