From b9a774dd19b5acd60c066349e6b83751a3136904 Mon Sep 17 00:00:00 2001 From: Megvii Engine Team Date: Wed, 16 Sep 2020 07:50:54 +0800 Subject: [PATCH] chore(deps): add pybind11 --- .gitmodules | 3 +++ third_party/prepare.sh | 2 ++ third_party/pybind11 | 1 + 3 files changed, 6 insertions(+) create mode 160000 third_party/pybind11 diff --git a/.gitmodules b/.gitmodules index 98a043395..f662ee902 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,3 +28,6 @@ [submodule "third_party/cpuinfo"] path = third_party/cpuinfo url = https://github.com/pytorch/cpuinfo.git +[submodule "third_party/pybind11"] + path = third_party/pybind11 + url = https://github.com/pybind/pybind11.git diff --git a/third_party/prepare.sh b/third_party/prepare.sh index 2975fe2c7..2afecaa7a 100755 --- a/third_party/prepare.sh +++ b/third_party/prepare.sh @@ -36,3 +36,5 @@ pushd MegRay/third_party >/dev/null git submodule update --init gdrcopy git submodule update --init ucx popd >/dev/null + +git submodule update --init pybind11 diff --git a/third_party/pybind11 b/third_party/pybind11 new file mode 160000 index 000000000..b3d8fec06 --- /dev/null +++ b/third_party/pybind11 @@ -0,0 +1 @@ +Subproject commit b3d8fec066285c831b69fd77c092f1cc70e38882 -- GitLab