Merge pull request #491 from dlang-community/bat-bin

output in bin when using the bat and DUB
This commit is contained in:
Brian Schott 2017-07-05 00:22:59 -07:00 committed by GitHub
commit eae0305292
2 changed files with 22 additions and 19 deletions

View File

@ -26,5 +26,5 @@ for %%x in (containers\src\containers\*.d) do set CONTAINERS=!CONTAINERS! %%x
for %%x in (containers\src\containers\internal\*.d) do set CONTAINERS=!CONTAINERS! %%x for %%x in (containers\src\containers\internal\*.d) do set CONTAINERS=!CONTAINERS! %%x
@echo on @echo on
dmd %CORE% %STD% %LIBDPARSE% %LIBDDOC% %ANALYSIS% %INIFILED% %DSYMBOL% %CONTAINERS% %DFLAGS% -I"libdparse\src" -I"dsymbol\src" -I"containers\src" -I"libddoc\src" -ofdscanner.exe dmd %CORE% %STD% %LIBDPARSE% %LIBDDOC% %ANALYSIS% %INIFILED% %DSYMBOL% %CONTAINERS% %DFLAGS% -I"libdparse\src" -I"dsymbol\src" -I"containers\src" -I"libddoc\src" -ofbin\dscanner.exe

View File

@ -1,19 +1,22 @@
{ {
"name": "dscanner", "name" : "dscanner",
"description": "Swiss-army knife for D source code", "description" : "Swiss-army knife for D source code",
"copyright": "© Brian Schott", "copyright" : "© Brian Schott",
"authors": ["Brian Schott"], "authors" : [
"license" : "Boost Software License - Version 1.0", "Brian Schott"
"targetType": "autodetect", ],
"versions": [ "license" : "Boost Software License - Version 1.0",
"built_with_dub", "targetType" : "autodetect",
"StdLoggerDisableWarning" "versions" : [
], "built_with_dub",
"dependencies": { "StdLoggerDisableWarning"
"libdparse": "~>0.7.1-beta.5", ],
"dsymbol": "~>0.2.0", "dependencies" : {
"inifiled": ">=1.0.2", "libdparse" : "~>0.7.1-beta.5",
"emsi_containers": "~>0.5.3", "dsymbol" : "~>0.2.0",
"libddoc": "~>0.2.0" "inifiled" : ">=1.0.2",
}, "emsi_containers" : "~>0.5.3",
} "libddoc" : "~>0.2.0"
},
"targetPath" : "bin"
}