Merge pull request #315 from BBasile/BBasile-fixbat-mspack
fix build.bat - broken since msgpack splitted in sub modules
This commit is contained in:
commit
799c3fe8ec
|
@ -16,6 +16,9 @@ for /r "libdparse/src" %%F in (*.d) do call set libdparse_modules=%%libdparse_mo
|
||||||
set allocator_modules=
|
set allocator_modules=
|
||||||
for /r "libdparse/experimental_allocator/src" %%F in (*.d) do call set allocator_modules=%%allocator_modules%% "%%F"
|
for /r "libdparse/experimental_allocator/src" %%F in (*.d) do call set allocator_modules=%%allocator_modules%% "%%F"
|
||||||
|
|
||||||
|
set msgspack_modules=
|
||||||
|
for /r "msgpack-d/src" %%F in (*.d) do call set msgspack_modules=%%msgspack_modules%% "%%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
|
||||||
|
|
||||||
|
@ -24,7 +27,7 @@ dmd^
|
||||||
src\common\messages.d^
|
src\common\messages.d^
|
||||||
src\common\dcd_version.d^
|
src\common\dcd_version.d^
|
||||||
src\common\socket.d^
|
src\common\socket.d^
|
||||||
msgpack-d\src\msgpack.d^
|
%msgspack_modules%^
|
||||||
-Imsgpack-d\src^
|
-Imsgpack-d\src^
|
||||||
-release -inline -O -wi^
|
-release -inline -O -wi^
|
||||||
-of%client_name%
|
-of%client_name%
|
||||||
|
@ -36,7 +39,7 @@ dmd^
|
||||||
%common_modules%^
|
%common_modules%^
|
||||||
%containers_modules%^
|
%containers_modules%^
|
||||||
%allocator_modules%^
|
%allocator_modules%^
|
||||||
msgpack-d/src/msgpack.d^
|
%msgspack_modules%^
|
||||||
-Icontainers/src^
|
-Icontainers/src^
|
||||||
-Imsgpack-d/src^
|
-Imsgpack-d/src^
|
||||||
-Ilibdparse/src^
|
-Ilibdparse/src^
|
||||||
|
|
Loading…
Reference in New Issue