mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Change dflags to be compiler-agnostic
This commit is contained in:
parent
077ed39b9a
commit
d1e3366549
118
dub.json
118
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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue