remove remainings of stdx-allocator
This commit is contained in:
parent
8ccc715426
commit
c4e4d6f75d
|
|
@ -34,9 +34,6 @@ for /r "libdparse/src" %%F in (*.d) do call set libdparse_modules=%%libdparse_mo
|
||||||
set msgspack_modules=
|
set msgspack_modules=
|
||||||
for /r "msgpack-d/src" %%F in (*.d) do call set msgspack_modules=%%msgspack_modules%% "%%F"
|
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 client_name=bin\dcd-client
|
||||||
set server_name=bin\dcd-server
|
set server_name=bin\dcd-server
|
||||||
|
|
||||||
|
|
@ -59,11 +56,9 @@ set server_name=bin\dcd-server
|
||||||
%common_modules%^
|
%common_modules%^
|
||||||
%containers_modules%^
|
%containers_modules%^
|
||||||
%msgspack_modules%^
|
%msgspack_modules%^
|
||||||
%stdx_allocator%^
|
|
||||||
-Icontainers/src^
|
-Icontainers/src^
|
||||||
-Imsgpack-d/src^
|
-Imsgpack-d/src^
|
||||||
-Ilibdparse/src^
|
-Ilibdparse/src^
|
||||||
-Istdx-allocator/source^
|
|
||||||
-wi -O -release^
|
-wi -O -release^
|
||||||
-Jbin^
|
-Jbin^
|
||||||
%MFLAGS%^
|
%MFLAGS%^
|
||||||
|
|
|
||||||
3
makefile
3
makefile
|
|
@ -12,7 +12,6 @@ LDC := ldc2
|
||||||
|
|
||||||
DPARSE_DIR := libdparse
|
DPARSE_DIR := libdparse
|
||||||
DSYMBOL_DIR := dsymbol
|
DSYMBOL_DIR := dsymbol
|
||||||
STDXALLOC_DIR := stdx-allocator
|
|
||||||
|
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
|
||||||
|
|
@ -65,7 +64,6 @@ SERVER_SRC := \
|
||||||
$(shell find common/src/dcd/common -name "*.d")\
|
$(shell find common/src/dcd/common -name "*.d")\
|
||||||
$(shell find src/dcd/server -name "*.d")\
|
$(shell find src/dcd/server -name "*.d")\
|
||||||
$(shell find ${DSYMBOL_DIR}/src -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 ${DPARSE_DIR}/src -name "*.d")\
|
||||||
$(shell find containers/src -name "*.d")\
|
$(shell find containers/src -name "*.d")\
|
||||||
$(shell find msgpack-d/src/ -name "*.d")
|
$(shell find msgpack-d/src/ -name "*.d")
|
||||||
|
|
@ -74,7 +72,6 @@ DMD_SERVER_FLAGS := -Icontainers/src\
|
||||||
-Imsgpack-d/src\
|
-Imsgpack-d/src\
|
||||||
-I${DPARSE_DIR}/src\
|
-I${DPARSE_DIR}/src\
|
||||||
-I${DSYMBOL_DIR}/src\
|
-I${DSYMBOL_DIR}/src\
|
||||||
-I${STDXALLOC_DIR}/source\
|
|
||||||
-Jbin\
|
-Jbin\
|
||||||
-wi\
|
-wi\
|
||||||
-O\
|
-O\
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue