-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
26 lines (26 loc) · 692 Bytes
/
dub.json
File metadata and controls
26 lines (26 loc) · 692 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
{
"authors": [
"Ferhat Kurtulmuş"
],
"copyright": "Copyright 2019, Ferhat Kurtulmuş",
"description": "Dynamic array implementation for D (-betterC).",
"license": "Boost",
"name": "dvector",
"version": "0.0.5",
"dflags": ["-betterC"],
"importPaths": ["source"],
"sourcePaths": ["source"],
"configurations": [
{
"name": "library",
"targetType": "library",
"sourcePaths": ["source"]
},
{
"name": "import",
"targetType": "sourceLibrary",
"sourceFiles-posix": ["libdvector.a"],
"sourceFiles-windows": ["dvector.lib"]
}
]
}