mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
14 lines
401 B
CMake
14 lines
401 B
CMake
include(ExternalProject)
|
|
|
|
set(pybind11_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/pybind11/src/pybind11/include)
|
|
set(pybind11_URL https://github.com/pybind/pybind11.git)
|
|
set(pybind11_TAG v2.4.0)
|
|
|
|
ExternalProject_Add(pybind11
|
|
PREFIX pybind11
|
|
GIT_REPOSITORY ${pybind11_URL}
|
|
GIT_TAG ${pybind11_TAG}
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
)
|