pybind11.cmake 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_URL2 "https://huggingface.co/csukuangfj/sherpa-ncnn-cmake-deps/resolve/main/pybind11-2.10.2.tar.gz")
  5. set(pybind11_HASH "SHA256=93bd1e625e43e03028a3ea7389bba5d3f9f2596abc074b068e70f4ef9b1314ae")
  6. # If you don't have access to the Internet, please download it to your
  7. # local drive and modify the following line according to your needs.
  8. set(possible_file_locations
  9. $ENV{HOME}/Downloads/pybind11-2.10.2.tar.gz
  10. $ENV{HOME}/asr/pybind11-2.10.2.tar.gz
  11. ${PROJECT_SOURCE_DIR}/pybind11-2.10.2.tar.gz
  12. ${PROJECT_BINARY_DIR}/pybind11-2.10.2.tar.gz
  13. /tmp/pybind11-2.10.2.tar.gz
  14. )
  15. foreach(f IN LISTS possible_file_locations)
  16. if(EXISTS ${f})
  17. set(pybind11_URL "${f}")
  18. file(TO_CMAKE_PATH "${pybind11_URL}" pybind11_URL)
  19. set(pybind11_URL2)
  20. break()
  21. endif()
  22. endforeach()
  23. FetchContent_Declare(pybind11
  24. URL
  25. ${pybind11_URL}
  26. ${pybind11_URL2}
  27. URL_HASH ${pybind11_HASH}
  28. )
  29. FetchContent_GetProperties(pybind11)
  30. if(NOT pybind11_POPULATED)
  31. message(STATUS "Downloading pybind11 from ${pybind11_URL}")
  32. FetchContent_Populate(pybind11)
  33. endif()
  34. message(STATUS "pybind11 is downloaded to ${pybind11_SOURCE_DIR}")
  35. add_subdirectory(${pybind11_SOURCE_DIR} ${pybind11_BINARY_DIR} EXCLUDE_FROM_ALL)
  36. endfunction()
  37. download_pybind11()