Differences From Artifact [4a978e9aa8f5388f]:
- File
build.bat
- 2010-11-09 05:19:20 - part of checkin [8de5b49cdf] on branch trunk - split tricks module into a separate package. (user: kinaba) [annotate]
- 2010-11-26 12:22:18 - part of checkin [23fb1b4a0e] on branch trunk - jikken before non-memo macro (user: kinaba) [annotate]
To Artifact [b5142898fa4accdf]:
- File
build.bat
- 2010-11-09 06:19:11 - part of checkin [d78d700f7a] on branch trunk - tenuki REPL bug-fix (now we can continue using REPL after a syntax error) and file interpreter mode. (user: kinaba) [annotate]
1 1 @setlocal ENABLEDELAYEDEXPANSION
2 2 @set ARGS=
3 3 @for %%I in (main.d polemy\*.d tricks\*.d) do @set ARGS=!ARGS! %%I
4 4 @if not exist bin mkdir bin
5 -@echo dmd -ofbin\polemy.exe -O -release -inline %ARGS%
6 -@dmd -ofbin\polemy.exe -O -release -inline %ARGS%
5 +@echo dmd -ofbin\polemy.exe -O -release %ARGS%
6 +@dmd -ofbin\polemy.exe -O -release %ARGS%