source: other-projects/expeditee-release-kits/create-expeditee.bat@ 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: 1.2 KB
Line 
1@echo off
2::call "C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin\SetEnv.cmd"
3::call "C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
4
5:: Need to edit rke-setup.bat and fill it in with local env vars values
6if not exist C:\Research\Nightly\tools\expeditee-release-kits\rke-setup.bat (
7echo.
8echo *******************
9echo.
10echo First edit C:\Research\Nightly\tools\expeditee-release-kits\rke-setup.bat.in
11echo to generate C:\Research\Nightly\tools\expeditee-release-kits\rke-setup.bat
12echo.
13echo *******************
14echo.
15goto end
16)
17
18:: rke-setup.bat uses local paths, so cd into expeditee-release-kits first
19:: then call rke-setup.bat to source the environment vars it sets
20pushd C:\Research\Nightly\tools\expeditee-release-kits
21call rke-setup.bat
22popd
23
24
25:: Make sure the expeditee folder and its rke-build.properties file exist
26:: Then run the 'rke' command from snapshots\expeditee
27pushd C:\Research\Nightly\snapshots
28::http://www.robvanderwoude.com/battech_ifexistfolder.php
29if not exist expeditee\ mkdir expeditee
30if not exist expeditee\rke-build.properties copy C:\Research\Nightly\tools\expeditee-release-kits\rke-build.properties.in expeditee\rke-build.properties
31cd expeditee
32rke
33popd
34
35:end
Note: See TracBrowser for help on using the repository browser.