We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89b8902 + fc32323 commit 35d7da7Copy full SHA for 35d7da7
.gitmodules
@@ -7,3 +7,6 @@
7
[submodule "beaver"]
8
path = beaver
9
url = https://github.com/sociomantic-tsunami/beaver.git
10
+[submodule "stdx-allocator"]
11
+ path = stdx-allocator
12
+ url = https://github.com/dlang-community/stdx-allocator
makefile
@@ -1,6 +1,7 @@
1
SRC := $(shell find src -name "*.d") \
2
- $(shell find libdparse/src -name "*.d")
3
-INCLUDE_PATHS := -Ilibdparse/src -Isrc
+ $(shell find libdparse/src -name "*.d") \
+ $(shell find stdx-allocator/source -name "*.d")
4
+INCLUDE_PATHS := -Ilibdparse/src -Istdx-allocator/source -Isrc
5
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS) -Jviews
6
DMD_DEBUG_FLAGS := -debug -g $(DMD_COMMON_FLAGS)
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
stdx-allocator
0 commit comments