-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
dub.json
40 lines (40 loc) · 963 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
33
34
35
36
37
38
39
40
{
"name": "dlib",
"description": "D language utility library",
"homepage": "http://github.com/gecko0307/dlib",
"license": "BSL-1.0",
"authors": [
"Timur Gafarov",
"Martin Cejp",
"Andrey Penechko",
"Vadim Lopatin",
"Nick Papanastasiou",
"Oleg Baharev",
"Roman Chistokhodov",
"Eugene Wissner",
"Roman Vlasov",
"Basile Burg",
"Valeriy Fedotov",
"Ferhat Kurtulmuş"
],
"importPaths": [
"."
],
"buildRequirements":[
"allowWarnings"
],
"lflags-linux-gdc": ["-lz"],
"configurations": [
{
"name": "library",
"targetType": "library",
"sourcePaths": ["dlib"]
},
{
"name": "import",
"targetType": "sourceLibrary",
"sourceFiles-posix": ["libdlib.a"],
"sourceFiles-windows": ["dlib.lib"]
}
]
}