Skip to content

Commit c697d88

Browse files
author
Basile Burg
committed
update bat file for stdx module names
1 parent 851434c commit c697d88

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.bat

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ set DFLAGS=-g
77
set CORE=
88
set STD=
99
set STDD=
10-
set STDE=
10+
set STDXALLOCATOR=
11+
set STDXALLOCATORBLOCKS=
1112
set OBIN=bin\dfmt
1213

1314
for %%x in (src\dfmt\*.d) do set CORE=!CORE! %%x
1415
for %%x in (libdparse\src\std\experimental\*.d) do set STD=!STD! %%x
1516
for %%x in (libdparse\src\dparse\*.d) do set STDD=!STDD! %%x
16-
for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\*.d) do set STDE=!STDE! %%x
17-
for %%x in (libdparse\experimental_allocator\src\std\experimental\allocator\building_blocks\*.d) do set STDE=!STDE! %%x
17+
for %%x in (stdx-allocator\source\stdx\allocator\*.d) do set STDXALLOCATOR=!STDXALLOCATOR! %%x
18+
for %%x in (stdx-allocator\source\stdx\allocator\building_blocks\*.d) do set STDXALLOCATORBLOCKS=!STDXALLOCATORBLOCKS! %%x
1819

1920
@echo on
20-
%DC% %CORE% %STD% %STDD% %STDE% %DFLAGS% -of%OBIN%.exe
21+
%DC% %CORE% %STD% %STDD% %STDE% %STDXALLOCATOR% %STDXALLOCATORBLOCKS% -I"stdx-allocator\source" -I"libdparse\src" %DFLAGS% -of%OBIN%.exe
2122

2223
if exist %OBIN%.obj del %OBIN%.obj

0 commit comments

Comments
 (0)