| 1 | {{{ |
| 2 | REM Simple script for building WarpVision |
| 3 | REM Send comments to: fbakan@gmx.net |
| 4 | REM You should only need to edit the following 6 SETs (and trunk\makefile.inc) |
| 5 | |
| 6 | SET GCC_BASE=g:\dev\gcc\335csd1\usr |
| 7 | SET ICC_BASE=o:\va365 |
| 8 | SET WC_BASE=g:\wc |
| 9 | SET SNAP_SDK_PATH=g:\scitech |
| 10 | SET TARGET=trunk |
| 11 | SET DESTINATION=o:\apps\wvown |
| 12 | REM ! Be shure you have created DESTINATION manually |
| 13 | REM ! before you this script |
| 14 | |
| 15 | |
| 16 | SET INCLUDE=.;%INCLUDE% |
| 17 | call %GCC_BASE%\bin\gccenv.cmd |
| 18 | SET C_INCLUDE_PATH=%GCC_BASE%\INCLUDE |
| 19 | call %ICC_BASE%\bin\SETENV.CMD |
| 20 | cd %TARGET%\gui |
| 21 | call nmake |
| 22 | cd ..\plugins |
| 23 | nmake |
| 24 | call %WC_BASE%\setvars.cmd |
| 25 | call %SNAP_SDK_PATH%\start-sdk.cmd |
| 26 | cd tv |
| 27 | wmake |
| 28 | cd ..\snapov |
| 29 | wmake |
| 30 | |
| 31 | cd .. |
| 32 | md %DESTINATION%\plugins 2>NUL |
| 33 | copy *.dll %DESTINATION%\plugins |
| 34 | copy snapov\*.dll %DESTINATION%\plugins |
| 35 | copy tv\*.dll %DESTINATION%\plugins |
| 36 | cd .. |
| 37 | copy gui\*.exe %DESTINATION% |
| 38 | copy liba52\liba52.dll %DESTINATION% |
| 39 | copy gui\*.dll %DESTINATION% |
| 40 | rem md %DESTINATION%\skin 2>NUL |
| 41 | rem copy gui\skin\* %DESTINATION%\skin |
| 42 | }}} |