From d1e3366549a8087f5f9b95158441c9862f2b5197 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Mon, 9 Mar 2015 00:07:40 +0100 Subject: [PATCH] Change dflags to be compiler-agnostic --- dub.json | 118 +++++++++++++++++++++++++++---------------------------- 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/dub.json b/dub.json index 9d0f5a3..a5c17ff 100644 --- a/dub.json +++ b/dub.json @@ -1,59 +1,59 @@ -{ - "name" : "poodinis", - "description" : "A dependency injection framework with support for autowiring.", - "homepage": "http://lostmoment.com/open-source/poodinis", - "authors": ["Mike Bierlee"], - "copyright": "Copyright 2014 Mike Bierlee", - "license": "MIT", - "configurations": [ - { - "name": "build", - "targetType": "library" - }, - { - "name": "unittest", - "targetType": "executable", - "sourcePaths": [ - "test" - ], - "dflags-dmd": [ - "-main" - ] - }, - { - "name": "unittestVerbose", - "targetType": "executable", - "debugVersions": ["poodinisVerbose"], - "sourcePaths": [ - "test" - ], - "dflags-dmd": [ - "-main" - ] - }, - { - "name" : "quickstartExample", - "description" : "Quickstart example from the Poodinis readme.", - "targetType": "executable", - "targetName": "quickstartExample", - "sourcePaths": [ - "example/quickstart" - ], - "importPaths": [ - "source" - ] - }, - { - "name" : "qualifiersExample", - "description" : "Quickstart example where qualifiers are used.", - "targetType": "executable", - "targetName": "qualifiersExample", - "sourcePaths": [ - "example/qualifiers" - ], - "importPaths": [ - "source" - ] - } - ] -} +{ + "name" : "poodinis", + "description" : "A dependency injection framework with support for autowiring.", + "homepage": "http://lostmoment.com/open-source/poodinis", + "authors": ["Mike Bierlee"], + "copyright": "Copyright 2014 Mike Bierlee", + "license": "MIT", + "configurations": [ + { + "name": "build", + "targetType": "library" + }, + { + "name": "unittest", + "targetType": "executable", + "sourcePaths": [ + "test" + ], + "dflags": [ + "-main" + ] + }, + { + "name": "unittestVerbose", + "targetType": "executable", + "debugVersions": ["poodinisVerbose"], + "sourcePaths": [ + "test" + ], + "dflags-dmd": [ + "-main" + ] + }, + { + "name" : "quickstartExample", + "description" : "Quickstart example from the Poodinis readme.", + "targetType": "executable", + "targetName": "quickstartExample", + "sourcePaths": [ + "example/quickstart" + ], + "importPaths": [ + "source" + ] + }, + { + "name" : "qualifiersExample", + "description" : "Quickstart example where qualifiers are used.", + "targetType": "executable", + "targetName": "qualifiersExample", + "sourcePaths": [ + "example/qualifiers" + ], + "importPaths": [ + "source" + ] + } + ] +}