Check-in [c48ba67854]
Not logged in
Overview
SHA1 Hash:c48ba678540c325ddc2754cbbf919b27bc1635f3
Date: 2010-11-08 17:05:28
User: kinaba
Comment:Changed release build script to ignore d2stacktrace.
Timelines: family | ancestors | descendants | both | trunk
Downloads: Tarball | ZIP archive
Other Links: files | file ages | manifest
Tags And Properties
Changes

Modified build.bat from [89e64358f6690364] to [a3b137d66c9ae5c5].

1 1 @setlocal ENABLEDELAYEDEXPANSION 2 2 @set ARGS= 3 -@for %%I in (main.d polemy\*.d d2stacktrace\*.d) do @set ARGS=!ARGS! %%I 3 +@for %%I in (main.d polemy\*.d) do @set ARGS=!ARGS! %%I 4 4 @if not exist bin mkdir bin 5 5 @echo dmd -ofbin\polemy.exe -O -release -inline %ARGS% 6 6 @dmd -ofbin\polemy.exe -O -release -inline %ARGS%

Modified readme.txt from [f8fe981026f3c9cf] to [69c8df99d191e188].

1 1 ----------------------------------------------------------------------------- 2 2 Polemy 0.1.0 3 3 by k.inaba (www.kmonos.net) 4 - Nov 7, 2010 4 + Nov 8, 2010 5 5 ----------------------------------------------------------------------------- 6 6 7 7 8 8 9 9 <<How to Build>> 10 10 11 11 - Install DMD 12 12 http://www.digitalmars.com/d/2.0/changelog.html 13 13 Version 2.050 is recommended. Older and/or newer version may not work. 14 14 15 15 - Build 16 - (for Poseidon IDE users) Open the project and build 17 16 (for Windows) Run build.bat 18 17 (for Unix) Run build.sh 19 18 or use your favorite build tools upon main.d and polemy/*.d. 20 19 21 20 Then you will get the executable "polemy" in the "bin" directory. 22 21 23 22 ................................................................................ 26 25 27 26 d2stacktrace/* 28 27 29 28 is written by Benjamin Thaut and licensed under 2-clause BSD License. 30 29 See http://3d.benjamin-thaut.de/?p=15 for the detail. 31 30 32 31 (this package is used only for enabling stack-traces during printing exceptions; 33 - if it is not needed, please just simply remove the sources from your build) 32 + it is not used for release builds.) 34 33 35 34 polemy/* 36 35 main.d 37 36 38 37 All the other parts are written by Kazuhiro Inaba and 39 38 licensed under NYSL 0.9982 ( http://www.kmonos.net/nysl/ ). 40 39 41 40 42 41 43 42 <<How to Use>> 44 43 45 44 I don't know.