-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
39 lines (39 loc) · 1.02 KB
/
dub.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "dwinrt",
"description": "A D langauge API projection for the Windows Runtime.",
"license": "BSL-1.0",
"copyright": "Copyright (c) 2015-2016 Adam Wilson",
"authors": [ "Adam Wilson" ],
"configurations": [
{
"name": "libdwinrt-x64",
"targetType": "staticLibrary",
"targetPath": "bin",
"targetName": "libdwinrt64",
"platforms": ["windows"],
"versions": ["Windows100"],
"excludedSourceFiles" : [ "source/app.d" ],
"dflags": [ "-m64" ]
},
{
"name": "libdwinrt-x86",
"targetType": "staticLibrary",
"targetPath": "bin",
"targetName": "libdwinrt32",
"platforms": ["windows"],
"versions": ["Windows100"],
"excludedSourceFiles" : [ "source/app.d" ],
"dflags": [ "-m32mscoff" ]
},
{
"name": "libdwinrt-test",
"targetType": "executable",
"targetPath": "bin",
"targetName": "libdwinrt-test",
"platforms": ["windows"],
"versions": ["Windows100"],
"libs": ["runtimeobject", "rometadata"],
"dflags": [ "-m32mscoff" ]
}
]
}