-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
vcpkg.json
36 lines (36 loc) · 880 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
36
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "primext",
"version-string": "latest",
"builtin-baseline": "962e5e39f8a25f42522f51fffc574e05a3efd26b",
"dependencies": [
{ "name": "fmt", "version>=": "10.1.0" }
],
"overrides": [
{ "name": "physx", "version": "4.1.2#6" }
],
"features": {
"client": {
"description": "Build client library",
"dependencies": [
{ "name": "imgui", "version>=": "1.89.9" }
]
},
"server": {
"description": "Build server library",
"dependencies": []
},
"utils": {
"description": "Build utilities",
"dependencies": [
{ "name": "miniz", "version>=": "3.0.2" }
]
},
"physx": {
"description": "Enable PhysX support",
"dependencies": [
"physx"
]
}
}
}