comparison build-release.bat @ 106:acdbb30fee7e

Port to D2. Most of the effort was dealing with immutable and const.
author Jordan Miner <jminer7@gmail.com>
date Mon, 17 Dec 2012 23:41:50 -0600
parents 592f7aa40bf1
children
comparison
equal deleted inserted replaced
105:97997a544ac0 106:acdbb30fee7e
1 @echo off 1 @echo off
2 2
3 call build-paths 3 call build-paths
4 4
5 set ARGS=-DCPATH%DMD_DIR%\bin -T%OUT_FILE% -od%CD%\obj -full -D -Dd%CD%/docs standard.ddoc 5 set ARGS=-DCPATH%DMD_DIR%\bin -T%OUT_FILE% -od%CD%\obj -full -D -Dd%CD%/docs standard.ddoc -I%TANGO_DIR%
6 set MODE_ARGS=-gui4.0 -release -inline -O 6 set MODE_ARGS=-gui4.0 -release -inline -O
7 7
8 @echo on 8 @echo on
9 %BUD_DIR%\bud -Xtango tango-user-dmd.lib %MAIN_FILE% cursors.res %ARGS% %MODE_ARGS% 9 %BUD_DIR%\bud -Xtango %TANGO_DIR%\libtango-dmd.lib %MAIN_FILE% cursors.res %ARGS% %MODE_ARGS%
10 @echo off 10 @echo off
11 if errorlevel 1 goto end 11 if errorlevel 1 goto end
12 12
13 rem Any other build tasks go here 13 rem Any other build tasks go here
14 14