diff --git a/build.bat b/build.bat index 285502b..ee208cc 100644 --- a/build.bat +++ b/build.bat @@ -34,9 +34,6 @@ for /r "libdparse/src" %%F in (*.d) do call set libdparse_modules=%%libdparse_mo set msgspack_modules= for /r "msgpack-d/src" %%F in (*.d) do call set msgspack_modules=%%msgspack_modules%% "%%F" -set stdx_allocator= -for /r "stdx-allocator/source/stdx/allocator" %%F in (*.d) do call set stdx_allocator=%%stdx_allocator%% "%%F" - set client_name=bin\dcd-client set server_name=bin\dcd-server @@ -59,11 +56,9 @@ set server_name=bin\dcd-server %common_modules%^ %containers_modules%^ %msgspack_modules%^ - %stdx_allocator%^ -Icontainers/src^ -Imsgpack-d/src^ -Ilibdparse/src^ - -Istdx-allocator/source^ -wi -O -release^ -Jbin^ %MFLAGS%^ diff --git a/makefile b/makefile index 0adeb83..6c5be13 100644 --- a/makefile +++ b/makefile @@ -12,7 +12,6 @@ LDC := ldc2 DPARSE_DIR := libdparse DSYMBOL_DIR := dsymbol -STDXALLOC_DIR := stdx-allocator SHELL:=/bin/bash @@ -65,7 +64,6 @@ SERVER_SRC := \ $(shell find common/src/dcd/common -name "*.d")\ $(shell find src/dcd/server -name "*.d")\ $(shell find ${DSYMBOL_DIR}/src -name "*.d")\ - $(shell find ${STDXALLOC_DIR}/source -name "*.d")\ $(shell find ${DPARSE_DIR}/src -name "*.d")\ $(shell find containers/src -name "*.d")\ $(shell find msgpack-d/src/ -name "*.d") @@ -74,7 +72,6 @@ DMD_SERVER_FLAGS := -Icontainers/src\ -Imsgpack-d/src\ -I${DPARSE_DIR}/src\ -I${DSYMBOL_DIR}/src\ - -I${STDXALLOC_DIR}/source\ -Jbin\ -wi\ -O\