Skip to content

Commit 50cd166

Browse files
committed
switch vcpkg to manifest mode; fix eigen version
Signed-off-by: Anton Dukhovnikov <[email protected]>
1 parent bbb6200 commit 50cd166

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

build_scripts/install_deps_windows.bash

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
set -ex
44

5-
vcpkg install \
6-
ceres:x64-windows \
7-
nlohmann-json:x64-windows \
8-
openimageio:x64-windows \
9-
nanobind:x64-windows
5+
cd ./build_scripts
6+
vcpkg x-update-baseline --add-initial-baseline
7+
vcpkg install
8+
cd ..

build_scripts/vcpkg.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
{
3+
"dependencies": [
4+
"ceres",
5+
"nlohmann-json",
6+
"openimageio",
7+
"nanobind"
8+
],
9+
"overrides": [
10+
{ "name": "eigen3", "version": "3.4.0" }
11+
]
12+
}

0 commit comments

Comments
 (0)