-
Notifications
You must be signed in to change notification settings - Fork 14
/
dub.json
executable file
·32 lines (31 loc) · 911 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
31
32
{
"name": "llvm-d",
"description": "D bindings for LLVM",
"copyright": "Copyright © 2013-2018 Moritz Maxeiner, Copyright © 2016-2017 Alex Parrill",
"license": "MIT",
"authors": [
"Moritz Maxeiner",
"Alex Parrill"
],
"homepage": "https://github.com/MoritzMaxeiner/llvm-d",
"targetType": "library",
"configurations": [
{
"name": "native-target",
"versions-x86": ["LLVM_Target_X86"],
"versions-x86_64": ["LLVM_Target_X86"],
"versions-sparc": ["LLVM_Target_Sparc"],
"versions-sparc64": ["LLVM_Target_Sparc"],
"versions-ppc": ["LLVM_Target_PowerPC"],
"versions-ppc64": ["LLVM_Target_PowerPC"],
"versions-aarch64": ["LLVM_Target_AArch64"],
"versions-arm": ["LLVM_Target_ARM"],
"versions-mips32": ["LLVM_Target_Mips"],
"versions-mips64": ["LLVM_Target_Mips"],
"versions-systemz": ["LLVM_Target_SystemZ"]
},
{
"name": "no-target"
}
]
}