mirage-config/dub.json
2022-09-25 20:17:50 +03:00

30 lines
809 B
JSON

{
"name": "mirage-config",
"description": "Configuration utilities supporting formats such as JSON",
"copyright": "Copyright © 2022, Mike Bierlee",
"authors": ["Mike Bierlee"],
"license": "MIT",
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"sourcePaths": ["source"]
},
{
"name": "jsonExample",
"targetType": "executable",
"description": "Example of how to read and work with JSON configurations.",
"targetName": "jsonExample",
"sourcePaths": ["examples/json"],
"importPaths": ["source"],
"copyFiles": ["examples/json/config.json"],
"targetPath": "bin/examples/json",
"workingDirectory": "bin/examples/json"
}
]
}