-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdub.json
36 lines (36 loc) · 1.01 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
{
"name": "soulfind",
"description": "Soulseek server implementation in D",
"copyright": "Copyright © 2005-2024, Soulfind Contributors",
"license": "GPL-3.0-or-later",
"toolchainRequirements": {
"ldc": ">=1.28.0",
"dmd": ">=2.98.0",
"gdc": "no"
},
"dependencies": {
"soulfind:server": "*",
"soulfind:setup": "*"
},
"targetType": "none",
"subPackages": [
{
"name": "server",
"targetType": "executable",
"targetPath": "bin",
"targetName": "soulfind",
"libs-posix": ["sqlite3"],
"libs-windows": ["winsqlite3"],
"excludedSourceFiles": ["src/setup/*"]
},
{
"name": "setup",
"targetType": "executable",
"targetPath": "bin",
"targetName": "soulsetup",
"libs-posix": ["sqlite3"],
"libs-windows": ["winsqlite3"],
"excludedSourceFiles": ["src/server/*"]
}
]
}