This commit is contained in:
Hackerpilot 2014-09-13 18:05:39 -07:00
parent e6e335cfc9
commit 1407c53e21
2 changed files with 6 additions and 4 deletions

2
.gitignore vendored
View File

@ -23,3 +23,5 @@ dscanner-report.json
# Object files
*.o
*.obj
*.exe

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! %%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
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