pybind11.cmake 719 B

123456789101112131415161718192021
  1. function(download_pybind11)
  2. include(FetchContent)
  3. set(pybind11_URL "https://github.com/pybind/pybind11/archive/refs/tags/v2.10.2.tar.gz")
  4. set(pybind11_HASH "SHA256=93bd1e625e43e03028a3ea7389bba5d3f9f2596abc074b068e70f4ef9b1314ae")
  5. FetchContent_Declare(pybind11
  6. URL ${pybind11_URL}
  7. URL_HASH ${pybind11_HASH}
  8. )
  9. FetchContent_GetProperties(pybind11)
  10. if(NOT pybind11_POPULATED)
  11. message(STATUS "Downloading pybind11 from ${pybind11_URL}")
  12. FetchContent_Populate(pybind11)
  13. endif()
  14. message(STATUS "pybind11 is downloaded to ${pybind11_SOURCE_DIR}")
  15. add_subdirectory(${pybind11_SOURCE_DIR} ${pybind11_BINARY_DIR} EXCLUDE_FROM_ALL)
  16. endfunction()
  17. download_pybind11()