This repository was archived by the owner on Sep 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
45 lines (45 loc) · 1.32 KB
/
dub.json
File metadata and controls
45 lines (45 loc) · 1.32 KB
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
40
41
42
43
44
45
{
"name": "nvimhost",
"authors": [
"@viniarck",
"viniarck@gmail.com",
"Vinicius S. Arcanjo"
],
"description": "Nvim (neovim) host provider and API client library.",
"copyright": "Copyright © 2018, Vinicius S. Arcanjo",
"license": "Apache",
"dependencies": {
"msgpack-d": "1.0.0-beta.7",
"vibe-core": "1.4.6"
},
"buildRequirements": ["allowWarnings"],
"dflags-ldc": ["-disable-linker-strip-dead","-link-defaultlib-shared=false"],
"configurations": [
{
"name": "nvimhostlib",
"targetType": "library",
"targetName": "nvimhost"
},
{
"name": "nvimclient",
"targetType": "executable",
"mainSourceFile": "examples/nvim_client.d",
"targetPath": "bin",
"targetName": "nvim-client"
},
{
"name": "demoplugin",
"targetType": "executable",
"mainSourceFile": "examples/demo_plugin.d",
"targetPath": "bin",
"targetName": "demo-plugin"
},
{
"name": "demoaltfile",
"targetType": "executable",
"mainSourceFile": "examples/altfile_plugin.d",
"targetPath": "bin",
"targetName": "altfile-plugin"
}
]
}