Merge pull request #491 from dlang-community/bat-bin
output in bin when using the bat and DUB
This commit is contained in:
commit
eae0305292
|
@ -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
|
||||||
|
|
||||||
|
|
5
dub.json
5
dub.json
|
@ -2,7 +2,9 @@
|
||||||
"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" : [
|
||||||
|
"Brian Schott"
|
||||||
|
],
|
||||||
"license" : "Boost Software License - Version 1.0",
|
"license" : "Boost Software License - Version 1.0",
|
||||||
"targetType" : "autodetect",
|
"targetType" : "autodetect",
|
||||||
"versions" : [
|
"versions" : [
|
||||||
|
@ -16,4 +18,5 @@
|
||||||
"emsi_containers" : "~>0.5.3",
|
"emsi_containers" : "~>0.5.3",
|
||||||
"libddoc" : "~>0.2.0"
|
"libddoc" : "~>0.2.0"
|
||||||
},
|
},
|
||||||
|
"targetPath" : "bin"
|
||||||
}
|
}
|
Loading…
Reference in New Issue