comparison build-release.bat @ 95:592f7aa40bf1

Add build scripts.
author Jordan Miner <jminer7@gmail.com>
date Tue, 01 May 2012 21:53:58 -0500
parents
children acdbb30fee7e
comparison
equal deleted inserted replaced
94:3b0c5c599003 95:592f7aa40bf1
1 @echo off
2
3 call build-paths
4
5 set ARGS=-DCPATH%DMD_DIR%\bin -T%OUT_FILE% -od%CD%\obj -full -D -Dd%CD%/docs standard.ddoc
6 set MODE_ARGS=-gui4.0 -release -inline -O
7
8 @echo on
9 %BUD_DIR%\bud -Xtango tango-user-dmd.lib %MAIN_FILE% cursors.res %ARGS% %MODE_ARGS%
10 @echo off
11 if errorlevel 1 goto end
12
13 rem Any other build tasks go here
14
15 :end
16 if not "%1" == "-nopause" pause
17 exit /B %ERRORLEVEL%
18