pybind.cmake 326 字节
Newer Older
1
include(FetchContent)
H
Hui Zhang 已提交
2 3
include(ExternalProject)

4 5
FetchContent_Declare(
  pybind
Y
YangZhou 已提交
6 7
  URL      https://github.com/pybind/pybind11/archive/refs/tags/v2.10.0.zip
  URL_HASH SHA256=225df6e6dea7cea7c5754d4ed954e9ca7c43947b849b3795f87cb56437f1bd19
8 9 10 11
)
FetchContent_MakeAvailable(pybind)
include_directories(${pybind_SOURCE_DIR}/include)