CASA-auth-token-client Windows: change builduser.cmd to bump msi version

This commit is contained in:
soochoi
2007-06-29 21:58:04 +00:00
parent f215a081eb
commit 9f4ea412c4
12 changed files with 607 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ echo "============================================="
echo " START - Build casa"
echo "============================================="
/usr/bin/rsh -n -d -l nds_cm localhost 'cd /d c:\cygwin\home\nds_cm\build_win\casa-auth-token-client~1.7\casa-auth-token-client\ && build_config\win64\builduser.cmd'
/usr/bin/rsh -n -d -l nds_cm localhost "set SVN_REVISION=$SVN_REVISION&& cd /d c:\cygwin\home\nds_cm\build_win\casa-auth-token-client~1.7\casa-auth-token-client\ && build_config\win64\builduser.cmd"
echo "Status: $?"

View File

@@ -1,16 +1,23 @@
@echo on
rem setup for calling nmake
rem setlocal
set casa_root_dir=%cd%
rem Do a free (retail) build
setlocal
call "C:\Program Files (x86)\Microsoft Visual Studio 2005\VC\bin\amd64\vcvarsamd64.bat" x86_amd64
call "C:\Program Files (x86)\Microsoft Visual Studio 2005\VC\bin\amd64\vcvarsamd64.bat"
rem VS 2005 crashed when building solution file, so right now building project level.
rem Also, it has the same problem with rebuild option, so I am cleaning binaries in my scripts.
cd /d %casa_root_dir%
devenv authclient.sln /build "Release|Win32"
devenv authclient.sln /build "Release|x64"
.\tools\w32\VersionVDProj\bin\VersionVDProj.exe -msi ./package/windows/authtokenclient64_msi/authtokenclient64_msi.vdproj version=1.7.%SVN_REVISION%
.\tools\w32\VersionVDProj\bin\VersionVDProj.exe -msi ./package/windows/authtokenclientdevel64_msi/authtokenclientdevel64_msi.vdproj version=1.7.%SVN_REVISION%
.\tools\w32\VersionVDProj\bin\VersionVDProj.exe -msi ./package/windows/authtokenclientdevel_msi/authtokenclientdevel_msi.vdproj version=1.7.%SVN_REVISION%
.\tools\w32\VersionVDProj\bin\VersionVDProj.exe -msi ./package/windows/authtokenclient_msi/authtokenclient_msi.vdproj version=1.7.%SVN_REVISION%
rem devenv authclient.sln /build "Release|Win32"
rem devenv authclient.sln /build "Release|x64"
endlocal