Update build batch file based on suggestion by 'HeiHon'

This commit is contained in:
Hackerpilot 2014-08-26 13:43:20 -07:00
parent d50ff03fef
commit d610dc221d
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@ set ANALYSIS=
set INIFILED=
for %%x in (src\*.d) do set CORE=!CORE! %%x
for %%x in (src\analysis/*.d) do set ANALYSIS=!ANALYSIS! analysis/%%x
for %%x in (libdparse/src/std/*.d) do set STD=!STD! libdparse/src/std/%%x
for %%x in (libdparse/src/std/d/*.d) do set STDD=!STDD! libdparse/src/std/d/%%x
for %%x in (inifiled/source/*.d) do set INIFILED=!INIFILED! inifiled/source/%%x
for %%x in (src\analysis/*.d) do set ANALYSIS=!ANALYSIS! %%x
for %%x in (libdparse/src/std/*.d) do set STD=!STD! %%x
for %%x in (libdparse/src/std/d/*.d) do set STDD=!STDD! %%x
for %%x in (inifiled/source/*.d) do set INIFILED=!INIFILED! %%x
@echo on
dmd %CORE% %STD% %STDD% %ANALYSIS% %INIFILED% %DFLAGS% -ofdscanner.exe