pybind11.cmake 1.4 KB

123456789101112131415161718192021222324252627282930313233
  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. if(EXISTS "/star-fj/fangjun/download/github/pybind11-2.10.2.tar.gz")
  8. set(pybind11_URL "file:///star-fj/fangjun/download/github/pybind11-2.10.2.tar.gz")
  9. elseif(EXISTS "/Users/fangjun/Downloads/pybind11-2.10.2.tar.gz")
  10. set(pybind11_URL "file:///Users/fangjun/Downloads/pybind11-2.10.2.tar.gz")
  11. elseif(EXISTS "/tmp/pybind11-2.10.2.tar.gz")
  12. set(pybind11_URL "file:///tmp/pybind11-2.10.2.tar.gz")
  13. elseif(EXISTS "$ENV{HOME}/asr/pybind11-2.10.2.tar.gz")
  14. set(pybind11_URL "file://$ENV{HOME}/asr/pybind11-2.10.2.tar.gz")
  15. endif()
  16. FetchContent_Declare(pybind11
  17. URL ${pybind11_URL}
  18. URL_HASH ${pybind11_HASH}
  19. )
  20. FetchContent_GetProperties(pybind11)
  21. if(NOT pybind11_POPULATED)
  22. message(STATUS "Downloading pybind11 from ${pybind11_URL}")
  23. FetchContent_Populate(pybind11)
  24. endif()
  25. message(STATUS "pybind11 is downloaded to ${pybind11_SOURCE_DIR}")
  26. add_subdirectory(${pybind11_SOURCE_DIR} ${pybind11_BINARY_DIR} EXCLUDE_FROM_ALL)
  27. endfunction()
  28. download_pybind11()