-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvcpkg.json
42 lines (42 loc) · 1.1 KB
/
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
36
37
38
39
40
41
42
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "cfd3d",
"version": "0.1.0",
"dependencies": [
"glm",
"netcdf-c"
],
"features" : {
"cuda": {
"description": "Build with CUDA support.",
"dependencies": [
"cuda"
]
},
"opencl": {
"description": "Build with OpenCL support.",
"dependencies": [
"opencl"
]
},
"mpi": {
"description": "Build with MPI support. OpenMPI is used on Unix-based systems, and MSMPI on Windows.",
"dependencies": [
"mpi"
]
},
"openmpi": {
"description": "Build with OpenMPI support. This does not enable any MPI support if on Windows.",
"dependencies": [
{
"name": "openmpi",
"platform": "!windows"
}
]
}
},
"default-features": [
"opencl",
"openmpi"
]
}