-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdub.json
More file actions
28 lines (27 loc) · 719 Bytes
/
dub.json
File metadata and controls
28 lines (27 loc) · 719 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
{
"name": "d-tui",
"description": "D Text User Interface Library",
"homepage": "https://github.com/alexmherrmann/d-tui",
"copyright": "Copyright © 2014, Kevin Lamonte",
"authors": ["Kevin Lamonte"],
"license": "LGPL-3.0 or later",
"dependencies": {
},
"libs-posix": ["util"],
"buildRequirements": ["allowWarnings"],
"configurations": [
{
"__comment": "Default build is libtui.a",
"name": "library",
"targetType": "library",
"targetName": "tui"
},
{
"name": "demo1",
"dflags-dmd": ["-gc", "-gs"],
"mainSourceFile": "demo/demo1.d",
"targetType": "executable",
"targetName": "demo1"
},
]
}