-
Notifications
You must be signed in to change notification settings - Fork 58
/
dub.json
54 lines (46 loc) · 1.11 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "dlangide",
"description": "Cross platform D language IDE based on dlangui library",
"homepage": "https://github.com/buggins/dlangide",
"license": "Boost",
"authors": ["Vadim Lopatin"],
"targetName": "dlangide",
"targetPath": "bin",
"targetType": "executable",
"stringImportPaths": ["views"],
"dependencies": {
"dlangui": "~>0.10.3",
"dcd": "~>0.16.0-beta.1"
},
"copyFiles-windows": [
"libs/windows/x86/mago-mi.exe"
],
"libs-linux": ["z"],
"versions-windows": [
"USE_FREETYPE"
],
"configurations" : [
{
"name" : "default"
},
{
"name" : "minimal",
"subConfigurations" : {
"dlangui" : "minimal"
}
},
{
"name" : "console",
"subConfigurations" : {
"dlangui" : "console"
}
},
{
"name" : "x11",
"subConfigurations" : {
"dlangui" : "x11"
}
}
],
"versions": ["EmbedStandardResources"]
}