Changes between Initial Version and Version 1 of BuildWarpVisionCmd


Ignore:
Timestamp:
May 4, 2006, 9:27:14 PM (18 years ago)
Author:
Franz
Comment:

Initial Version

Legend:

Unmodified
Added
Removed
Modified
  • BuildWarpVisionCmd

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