mirage-config/dub.json

42 lines
1.3 KiB
JSON
Raw Normal View History

2022-09-23 22:34:22 +02:00
{
"name": "mirage-config",
2022-09-25 19:17:50 +02:00
"description": "Configuration utilities supporting formats such as JSON",
2022-09-23 22:34:22 +02:00
"copyright": "Copyright © 2022, Mike Bierlee",
"authors": ["Mike Bierlee"],
"license": "MIT",
2022-09-25 18:03:26 +02:00
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
2022-09-28 22:31:52 +02:00
"sourcePaths": ["source"],
"mainSourceFile": "source/mirage/testmain.d"
2022-09-25 18:03:26 +02:00
},
{
"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"
2022-09-28 23:13:20 +02:00
},
{
"name": "valueSubstitutionExample",
"targetType": "executable",
"description": "Example of how to use environment and config substitution.",
"targetName": "valueSubstitutionExample",
"sourcePaths": ["examples/valueSubstitution"],
"importPaths": ["source"],
"copyFiles": ["examples/valueSubstitution/config.json"],
"targetPath": "bin/examples/valueSubstitution",
"workingDirectory": "bin/examples/valueSubstitution"
2022-09-25 18:03:26 +02:00
}
]
2022-09-23 22:34:22 +02:00
}