-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdub.json
More file actions
28 lines (28 loc) · 872 Bytes
/
dub.json
File metadata and controls
28 lines (28 loc) · 872 Bytes
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
{
"name": "danode",
"description": "Small and flexible HTTP server for the D language.",
"authors": ["Danny Arends"],
"homepage": "http://www.dannyarends.nl",
"importPaths": ["danode"],
"sourcePaths": ["danode"],
"mainSourceFile": "danode/server.d",
"targetPath": "bin",
"targetName": "server",
"configurations": [
{
"name": "default",
"targetType": "executable",
},
{
"name": "ssl",
"targetType": "executable",
"versions": ["SSL"],
"dflags": ["-P-I$PACKAGE_DIR/deps/openssl/include"],
"lflags-linux-x86_64": ["-L$PACKAGE_DIR/deps/openssl", "-rpath=$PACKAGE_DIR/deps/openssl"],
"libs-linux-x86_64": ["ssl", "crypto"],
"lflags-windows-x86_64": ["/LIBPATH:$PACKAGE_DIR/deps/openssl"],
"libs-windows-x86_64": ["libssl", "libcrypto"],
"copyFiles-windows-x86_64": ["deps/openssl/libssl-3-x64.dll", "deps/openssl/libcrypto-3-x64.dll"]
}
]
}