CASA: check in build_config directory to build windows

This commit is contained in:
soochoi 2007-01-17 08:55:41 +00:00
parent dd07f3976d
commit a2819af8fd
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/bin/bash
# setup for calling "builduser.cmd and buildkernel.cmd" via cygwin's rsh
# since ssh is having trouble. This is a hack, but we don't any other way
# to solve this at the moment.
echo "============================================="
echo " START - Build User Space code"
echo "============================================="
/usr/bin/rsh -n -d -l nds_cm localhost '(cd /d c:\cygwin\home\nds_cm\build_win\casa~1.7\CASA\ && build_config\win64\builduser.cmd)'
echo "Status: $?"
echo "============================================="
echo " END - Build User Space code"
echo "============================================="

View File

@ -0,0 +1,15 @@
@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"
cd /d %casa_root_dir%
cd package\windows\vs_solutions\CASA64-msi
devenv /clean Release CASA-64-32.sln /out build.log
devenv /rebuild Release CASA-64-32.sln /out build.log
endlocal