2014-10-05 13:44:23 +02:00
|
|
|
{
|
|
|
|
"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"
|
|
|
|
]
|
2014-12-23 23:03:59 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "unittestVerbose",
|
|
|
|
"targetType": "executable",
|
|
|
|
"debugVersions": ["poodinisVerbose"],
|
|
|
|
"sourcePaths": [
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"dflags-dmd": [
|
|
|
|
"-main"
|
|
|
|
]
|
2015-02-21 17:20:57 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "quickstartExample",
|
|
|
|
"description" : "Quickstart example from the Poodinis readme.",
|
|
|
|
"targetType": "executable",
|
|
|
|
"targetName": "quickstartExample",
|
|
|
|
"sourcePaths": [
|
|
|
|
"example/quickstart"
|
|
|
|
],
|
|
|
|
"importPaths": [
|
|
|
|
"source"
|
|
|
|
]
|
2015-02-21 17:48:55 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "qualifiersExample",
|
|
|
|
"description" : "Quickstart example where qualifiers are used.",
|
|
|
|
"targetType": "executable",
|
|
|
|
"targetName": "qualifiersExample",
|
|
|
|
"sourcePaths": [
|
|
|
|
"example/qualifiers"
|
|
|
|
],
|
|
|
|
"importPaths": [
|
|
|
|
"source"
|
|
|
|
]
|
2014-10-05 13:44:23 +02:00
|
|
|
}
|
|
|
|
]
|
2015-02-21 17:20:57 +01:00
|
|
|
}
|