source: main/trunk/release-kits/bin/rk.bat@ 29394

Last change on this file since 29394 was 29394, checked in by sjm84, 10 years ago

Related to commit 29387. Changes to allow the release-kits to preserve the source code, to better enable debugging of differences in the release-kits. Tested with GS3 on the 32 bit linux: without setting the new KEEP_SRC env var in bin/rk, it still removes the src code as before and produces a binary of the same size as before. With the KEEP_SRC env var set to true in bin/rk, src code (gs2build/common-src, gli/src and GS3/src) is preserved. Untested on Windows or with gs2 since the gs2 binary generation on linux 32 is not working at present.

File size: 741 bytes
Line 
1@echo off
2set RELEASE_DIR=%CD%
3echo RELEASE_DIR:%RELEASE_DIR%
4pushd "%CD%"
5CD /D "%~dp0\.."
6
7:: Generally, an ant property can be true|on|yes vs false|off|no (or left unset)
8:: see https://ant.apache.org/manual/properties.html#if+unless
9:: However, the release-kit code requires envvar KEEP_SRC to be "true" in order to stop it deleting source code
10
11:: set KEEP_SRC=true
12set debug=
13if not "%KEEP_SRC%" == "" set debug="-Dkeep.src=%KEEP_SRC%"
14
15@echo on
16cmd.exe /c ant -f "%CD%\kits\%RK_NAME%\ant-scripts\build.xml" "-Drk.home=%CD%" "-Drk.name=%RK_NAME%" %debug% "-Dbasedir=%RELEASE_DIR%" -lib "%RELEASE_DIR%/installer/classes" %* | "%CD%\shared\windows\utils\tee.exe" "%RELEASE_DIR%\%RK_NAME%.out"
17
18:end
19set debug=
20
21popd
Note: See TracBrowser for help on using the repository browser.