Merge pull request #197 from kkwiatkowski/master

dfmt should be buildable under windows
This commit is contained in:
Brian Schott 2016-01-06 17:04:59 -08:00
commit 8e67e52f96
1 changed files with 7 additions and 5 deletions

View File

@ -5,11 +5,13 @@ set DFLAGS=-g
set CORE=
set STD=
set STDD=
set STDE=
for %%x in (src\*.d) do set CORE=!CORE! %%x
for %%x in (libdparse\src\std\*.d) do set STD=!STD! %%x
for %%x in (libdparse\src\std\d\*.d) do set STDD=!STDD! %%x
for %%x in (src\dfmt\*.d) do set CORE=!CORE! %%x
for %%x in (libdparse\src\std\experimental\*.d) do set STD=!STD! %%x
for %%x in (libdparse\src\dparse\*.d) do set STDD=!STDD! %%x
for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\*.d) do set STDE=!STDE! %%x
for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\building_blocks\*.d) do set STDE=!STDE! %%x
@echo on
dmd %CORE% %STD% %STDD% %DFLAGS% -ofbin\dfmt.exe
dmd %CORE% %STD% %STDD% %STDE% %DFLAGS% -ofbin\dfmt.exe