-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
35 lines (35 loc) · 1.08 KB
/
dub.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"authors": ["SHOO"],
"copyright": "Copyright © 2022, SHOO",
"description": "Microsoft Graph API.",
"license": "BSL-1.0",
"name": "msgraph",
"targetType": "library",
"buildTypes": {
"ddeps": {
"dflags": ["-deps=.dub/deps.txt"],
"buildOptions": ["syntaxOnly"],
"postBuildCommands": [
"$DUB run ddeps -- --focus=msgraph -i .dub/deps.txt -l .dub/deps.txt -o .dub/deps.dot --exclude=std --exclude=core --exclude=etc",
"dot -Tsvg -odocs/deps.svg .dub/deps.dot"
]
},
"vscode-unittest": { "buildOptions": ["debugMode", "debugInfoC", "unittests"] },
"vscode-unittest-cov": { "buildOptions": ["debugMode", "debugInfoC", "unittests", "coverage"] },
"vscode-debug": { "buildOptions": ["debugMode", "debugInfoC"] },
"vscode-debug-cov": { "buildOptions": ["debugMode", "debugInfoC", "coverage"] }
},
"configurations": [
{
"name": "default",
"targetType": "library"
},
{
"name": "unittest",
"targetType": "executable",
"targetName": "msgraph-unittest",
"debugVersions": ["MsGraphTest"],
"mainSourceFile": "examples/nativeapp/source/app.d"
}
]
}