From 114f8880fb4252c3539933513fee768cfc33040f Mon Sep 17 00:00:00 2001 From: sinkuu Date: Wed, 9 Jul 2014 16:30:28 +0900 Subject: [PATCH] Fix dub.json, and remove library configuration excludedSouceFiles is for preventing conflict --- dub.json | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/dub.json b/dub.json index c67d6fb..ff26bbd 100644 --- a/dub.json +++ b/dub.json @@ -1,20 +1,10 @@ { - "name": "dscanner", - "description": "Swiss-army knife for D source code", - "copyright": "© Brian Schott", - "authors": ["Brian Schott"], - "importPaths": ["."], + "name": "dscanner", + "description": "Swiss-army knife for D source code", + "copyright": "© Brian Schott", + "authors": ["Brian Schott"], "license" : "Boost Software License - Version 1.0", - "configurations": [ - { - "name": "library", - "targetType": "library", - "sourcePaths": ["std"], - }, - { - "name": "dscanner", - "targetType": "executable", - "sourcePaths": ["."], - }, - ], + "targetType": "executable", + "sourcePaths": ["."], + "excludedSourceFiles": ["inifiled/inifiled.d", "inifiled/test.d"], }