pybind11.cmake 1.2 KB

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