Update build batch file based on suggestion by 'HeiHon'
This commit is contained in:
parent
d50ff03fef
commit
d610dc221d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue