remove remainings of stdx-allocator

This commit is contained in:
WebFreak001 2022-07-09 19:12:07 +02:00
parent 8ccc715426
commit c4e4d6f75d
No known key found for this signature in database
GPG Key ID: AEFC88D11109D1AA
2 changed files with 0 additions and 8 deletions

View File

@ -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%^

View File

@ -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\