-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
29 lines (29 loc) · 700 Bytes
/
dub.json
File metadata and controls
29 lines (29 loc) · 700 Bytes
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
{
"name": "vk",
"description": "Terminal client for vk.com",
"authors": ["HaCk3D", "substanceof"],
"homepage": "https://github.com/HaCk3Dq/vk",
"license": "Apache-2.0",
"dependencies": {
"ncurses": "*"
},
"targetType": "executable",
"mainSourceFile": "source/app.d",
"platfroms": ["posix"],
"preGenerateCommands": ["rdmd generateVersion.d"],
"configurations": [
{
"name": "debug",
"buildRequirements": ["allowWarnings"],
},
{
"name": "release-shared",
"buildRequirements": ["silenceDeprecations"],
},
{
"name": "release-static",
"buildRequirements": ["silenceDeprecations"],
"lflags": ["-Bstatic"]
}
]
}