-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.json
82 lines (82 loc) · 1.5 KB
/
project.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"namespace": "vectorcxx",
"name": "vector",
"version": "0.2.0",
"portVersion": 1,
"dependencies": [
{
"link": "vectorcxx_bridge",
"$comment": "library added by rust_bridge.cmake"
},
{
"package": "ZLIB",
"link": "ZLIB::ZLIB",
"vcpkg": "zlib"
},
{
"vcpkg": "catch2"
},
{
"vcpkg": "corrosion"
},
{
"vcpkg": "rs-rdkafka"
},
{
"package": "RdKafka",
"link": "RdKafka::rdkafka RdKafka::rdkafka++",
"vcpkg": "librdkafka"
},
{
"package": "OpenSSL",
"link": "${OPENSSL_SSL_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY}",
"vcpkg": "openssl"
},
{
"library": "resolv",
"platform": "Darwin"
},
{
"library": "IOKit",
"platform": "Darwin"
},
{
"library": "Security",
"platform": "Darwin"
},
{
"library": "CoreServices",
"platform": "Darwin"
},
{
"library": "CoreFoundation",
"platform": "Darwin"
}
],
"testDependencies": [
{
"package": "nlohmann_json",
"link": "nlohmann_json::nlohmann_json",
"scope": "PRIVATE"
},
{
"package": "spdlog",
"link": "spdlog::spdlog",
"vcpkg": "spdlog",
"scope": "PRIVATE"
},
{
"package": "cpr",
"link": "cpr::cpr",
"scope": "PRIVATE"
},
{
"package": "fmt",
"link": "fmt::fmt",
"scope": "PRIVATE"
}
],
"properties": {
"POSITION_INDEPENDENT_CODE": "ON"
}
}