-
Notifications
You must be signed in to change notification settings - Fork 40
/
vcpkg.json
35 lines (35 loc) · 944 Bytes
/
vcpkg.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
{
"name": "helics",
"version-string": "3.5.3",
"description": "Hierarchical Engine for Large-scale Infrastructure Co-Simulation (HELICS)",
"homepage": "https://helics.org/",
"default-features": ["zeromq", "ipc", "webserver", "encryption"],
"dependencies": ["boost-core", "boost-spirit"],
"features": {
"zeromq": {
"description": "Build ZeroMQ core",
"dependencies": [
{
"name": "zeromq",
"features": ["sodium"]
}
]
},
"ipc": {
"description": "Build IPC core",
"dependencies": ["boost-interprocess"]
},
"mpi": {
"description": "Build MPI core",
"dependencies": ["mpi"]
},
"webserver": {
"description": "Build webserver in broker_server",
"dependencies": ["boost-beast", "boost-uuid"]
},
"encryption": {
"description": "Enable encryption using OpenSSL",
"dependencies": ["openssl"]
}
}
}