Skip to content

Commit 40f3d5b

Browse files
authored
Merge pull request #331 from wilzbach/update-dfmt
Bump dependencies merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
2 parents 35d7da7 + c697d88 commit 40f3d5b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
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

dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"targetType": "autodetect",
55
"license": "BSL-1.0",
66
"dependencies": {
7-
"libdparse": "~>0.8.0-alpha.3"
7+
"libdparse": "~>0.8.0-alpha.4"
88
}
99
}

0 commit comments

Comments
 (0)