Index: build.bat ================================================================== --- build.bat +++ build.bat @@ -1,6 +1,6 @@ @setlocal ENABLEDELAYEDEXPANSION @set ARGS= -@for %%I in (main.d polemy\*.d d2stacktrace\*.d) do @set ARGS=!ARGS! %%I +@for %%I in (main.d polemy\*.d) do @set ARGS=!ARGS! %%I @if not exist bin mkdir bin @echo dmd -ofbin\polemy.exe -O -release -inline %ARGS% @dmd -ofbin\polemy.exe -O -release -inline %ARGS% Index: readme.txt ================================================================== --- readme.txt +++ readme.txt @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- Polemy 0.1.0 by k.inaba (www.kmonos.net) - Nov 7, 2010 + Nov 8, 2010 ----------------------------------------------------------------------------- <> @@ -11,11 +11,10 @@ - Install DMD http://www.digitalmars.com/d/2.0/changelog.html Version 2.050 is recommended. Older and/or newer version may not work. - Build - (for Poseidon IDE users) Open the project and build (for Windows) Run build.bat (for Unix) Run build.sh or use your favorite build tools upon main.d and polemy/*.d. Then you will get the executable "polemy" in the "bin" directory. @@ -28,11 +27,11 @@ is written by Benjamin Thaut and licensed under 2-clause BSD License. See http://3d.benjamin-thaut.de/?p=15 for the detail. (this package is used only for enabling stack-traces during printing exceptions; - if it is not needed, please just simply remove the sources from your build) + it is not used for release builds.) polemy/* main.d All the other parts are written by Kazuhiro Inaba and