dfmt should be buildable under windows

This commit is contained in:
Konrad Kwiatkowski 2016-01-07 01:32:14 +01:00
parent 8035beec4f
commit b04e179400
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