Skip to content

Commit 55cd4bc

Browse files
committed
add vcpkg as submoduel
1 parent ebc4ac8 commit 55cd4bc

File tree

5 files changed

+38
-5
lines changed

5 files changed

+38
-5
lines changed

.gitmodules

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[submodule "pybind11"]
2-
path = pybind11
3-
url = https://github.com/pybind/pybind11.git
4-
branch = master
1+
[submodule "vcpkg"]
2+
path = vcpkg
3+
url = https://github.com/microsoft/vcpkg.git

pybind11

Lines changed: 0 additions & 1 deletion
This file was deleted.

vcpkg

Submodule vcpkg added at 4002e5f

vcpkg-configuration.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"default-registry": {
3+
"kind": "git",
4+
"repository": "https://github.com/microsoft/vcpkg",
5+
"baseline": "53bef8994c541b6561884a8395ea35715ece75db"
6+
},
7+
"registries": [
8+
{
9+
"kind": "git",
10+
"repository": "https://github.com/Quidient/public-vcpkg-registry",
11+
"baseline": "bca304de4814037f79fb96d61f9ffdbb500d4cae",
12+
"packages": [ "libintegrate", "materialx", "vxl"]
13+
}
14+
]
15+
}

vcpkg.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "cmake-example",
3+
"version": "0.1",
4+
"description": "CMake example",
5+
"dependencies": [
6+
{
7+
"name": "python3"
8+
},
9+
{
10+
"name": "pybind11"
11+
}
12+
],
13+
"overrides": [
14+
{
15+
"name": "python3",
16+
"version": "3.10.7"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)