mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/18959 ghimport-source-id: a934163fa34cb2019732d5f49dc7290c376bf156 Differential Revision: D14831246 Pulled By: ezyang fbshipit-source-id: beb92dc4ee8c82f4c8259c081dd72e477fe7a9d0
19 lines
527 B
CMake
19 lines
527 B
CMake
# Try to find the pybind11 library and headers.
|
|
# pybind11_FOUND - system has pybind11
|
|
# pybind11_INCLUDE_DIRS - the pybind11 include directory
|
|
|
|
find_path(pybind11_INCLUDE_DIR
|
|
NAMES pybind11/pybind11.h
|
|
DOC "The directory where pybind11 includes reside"
|
|
)
|
|
|
|
set(pybind11_INCLUDE_DIRS ${pybind11_INCLUDE_DIR})
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(pybind11
|
|
FOUND_VAR pybind11_FOUND
|
|
REQUIRED_VARS pybind11_INCLUDE_DIR
|
|
)
|
|
|
|
mark_as_advanced(pybind11_FOUND)
|