-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdub.json
39 lines (39 loc) · 986 Bytes
/
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
36
37
38
39
{
"name" : "oauth",
"description" : "OAuth2 client library compatible with vibe.d",
"copyright" : "Copyright © 2016,2017 Harry T. Vennik",
"license" : "MIT",
"authors" : [
"Harry T. Vennik",
"Sebastian Wilzbach"
],
"targetType" : "library",
"dependencies" : {
"vibe-d:data" : "*",
"vibe-d:http" : "~>0.9.5",
"vibe-d:web" : {
"version" : "*",
"optional" : true
}
},
"configurations": [
{
"name": "library",
"excludedSourceFiles": ["source/oauth/test.d"]
},
{
"name": "unittest",
"targetType": "executable",
"preBuildCommands": ["dub run unit-threaded -c gen_ut_main -- -f ut.d"],
"postBuildCommands": ["rm ut.d"],
"mainSourceFile": "ut.d",
"dependencies": {
"unit-threaded": "~>2.0"
},
"subConfigurations": {
"unit-threaded": "nodips"
}
}
],
"-ddoxTool": "scod"
}