-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
34 lines (34 loc) · 1.13 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
{
"authors": [ "Sinisa Susnjar" ],
"copyright": "Copyright © 2022, Sinisa Susnjar",
"description": "D bindings for the memgraph DB",
"license": "MIT",
"name": "memgraph-d",
"preGenerateCommands": [ "$PACKAGE_DIR/pregen" ],
"lflags-windows": [
"c:/Program Files/OpenSSL-Win64/lib/libcrypto.lib",
"c:/Program Files/OpenSSL-Win64/lib/libssl.lib"
],
"lflags-osx": [
"/usr/local/Cellar/[email protected]/1.1.1l/lib/libssl.a",
"/usr/local/Cellar/[email protected]/1.1.1l/lib/libcrypto.a"
],
"dflags-windows": [ "-L=/NODEFAULTLIB:libcmt", "-L=/NODEFAULTLIB:libvcruntime" ],
"libs-windows": [ "msvcrtd", "ws2_32" ],
"libs-linux": [ "openssl" ],
"configurations": [
{
"name": "lib",
"targetType": "staticLibrary",
"lflags-linux": [ "$PACKAGE_DIR/mgclient/build/src/libmgclient.a" ],
"lflags-osx": [ "$PACKAGE_DIR/mgclient/build/src/libmgclient.a" ],
"lflags-windows": [ "$PACKAGE_DIR/mgclient/build/src/Debug/mgclient.lib" ]
},
{
"name": "shared",
"targetType": "dynamicLibrary",
"libs": [ "mgclient" ],
"lflags": [ "-L$PACKAGE_DIR/mgclient/build/src" ]
}
]
}