From 78ef84a687dfb0ee16003718f074ae2b735ac009 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 12 Aug 2015 12:10:31 +0200 Subject: [PATCH] Update build.bat --- build.bat | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.bat b/build.bat index 5a08403..732acad 100644 --- a/build.bat +++ b/build.bat @@ -13,6 +13,9 @@ for /r "dsymbol/src" %%F in (*.d) do call set dsymbol_modules=%%dsymbol_modules% set libdparse_modules= for /r "libdparse/src" %%F in (*.d) do call set libdparse_modules=%%libdparse_modules%% "%%F" +set allocator_modules= +for /r "libdparse/experimental_allocator/src" %%F in (*.d) do call set allocator_modules=%%allocator_modules%% "%%F" + set client_name=bin\dcd-client set server_name=bin\dcd-server @@ -31,6 +34,7 @@ dmd^ %libdparse_modules%^ %common_modules%^ %containers_modules%^ + %allocator_modules%^ msgpack-d/src/msgpack.d^ -Icontainers/src^ -Imsgpack-d/src^