-
Notifications
You must be signed in to change notification settings - Fork 7
/
dub.json
30 lines (30 loc) · 869 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
{
"name": "windows-d",
"description": "The D Windows SDK projections",
"authors": ["Răzvan Ștefănescu"],
"license": "BSL-1.0",
"targetType": "none",
"dependencies": {
"windows-d:wind" : "*",
"windows-d:windows": "*"
},
"subPackages": [
{
"name": "wind",
"description": "The D Windows SDK projection generator",
"targetName": "wind",
"targetType": "executable",
"targetPath": "bin",
"sourcePaths": ["src"]
},
{
"name": "windows",
"description": "The D Windows SDK projection library",
"targetType": "staticLibrary",
"targetName": "windows",
"targetPath": "bin",
"sourcePaths": ["out/windows"],
"importPaths": ["out"]
}
]
}