dfmt should be buildable under windows
This commit is contained in:
parent
8035beec4f
commit
b04e179400
12
build.bat
12
build.bat
|
@ -5,11 +5,13 @@ set DFLAGS=-g
|
||||||
set CORE=
|
set CORE=
|
||||||
set STD=
|
set STD=
|
||||||
set STDD=
|
set STDD=
|
||||||
|
set STDE=
|
||||||
|
|
||||||
for %%x in (src\*.d) do set CORE=!CORE! %%x
|
for %%x in (src\dfmt\*.d) do set CORE=!CORE! %%x
|
||||||
for %%x in (libdparse\src\std\*.d) do set STD=!STD! %%x
|
for %%x in (libdparse\src\std\experimental\*.d) do set STD=!STD! %%x
|
||||||
for %%x in (libdparse\src\std\d\*.d) do set STDD=!STDD! %%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
|
@echo on
|
||||||
dmd %CORE% %STD% %STDD% %DFLAGS% -ofbin\dfmt.exe
|
dmd %CORE% %STD% %STDD% %STDE% %DFLAGS% -ofbin\dfmt.exe
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue