From 169f784aae68e443204f1db79797e05f31d369f5 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 4 Jul 2017 09:18:58 +0200 Subject: [PATCH 1/2] output in bin when using the bat --- build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bat b/build.bat index af36b70..28e21c9 100644 --- a/build.bat +++ b/build.bat @@ -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 @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 From 672c665d51a99d5ee212129582ced7eeac4272ec Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 4 Jul 2017 09:58:00 +0200 Subject: [PATCH 2/2] DUB project, out put to bin --- dub.json | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/dub.json b/dub.json index f4db0ff..696ebbb 100644 --- a/dub.json +++ b/dub.json @@ -1,19 +1,22 @@ { - "name": "dscanner", - "description": "Swiss-army knife for D source code", - "copyright": "© Brian Schott", - "authors": ["Brian Schott"], - "license" : "Boost Software License - Version 1.0", - "targetType": "autodetect", - "versions": [ - "built_with_dub", - "StdLoggerDisableWarning" - ], - "dependencies": { - "libdparse": "~>0.7.1-beta.5", - "dsymbol": "~>0.2.0", - "inifiled": ">=1.0.2", - "emsi_containers": "~>0.5.3", - "libddoc": "~>0.2.0" - }, -} + "name" : "dscanner", + "description" : "Swiss-army knife for D source code", + "copyright" : "© Brian Schott", + "authors" : [ + "Brian Schott" + ], + "license" : "Boost Software License - Version 1.0", + "targetType" : "autodetect", + "versions" : [ + "built_with_dub", + "StdLoggerDisableWarning" + ], + "dependencies" : { + "libdparse" : "~>0.7.1-beta.5", + "dsymbol" : "~>0.2.0", + "inifiled" : ">=1.0.2", + "emsi_containers" : "~>0.5.3", + "libddoc" : "~>0.2.0" + }, + "targetPath" : "bin" +} \ No newline at end of file