From d610dc221d6157569364a9120b0fd552cfa2af1a Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 26 Aug 2014 13:43:20 -0700 Subject: [PATCH] Update build batch file based on suggestion by 'HeiHon' --- build.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.bat b/build.bat index 4be2da5..791dbef 100644 --- a/build.bat +++ b/build.bat @@ -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