Files
pytorch/cmake/Modules/Findpybind11.cmake
Edward Yang 48a35135fb Convert all tabs to spaces, add CI. (#18959)
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
2019-04-09 08:12:26 -07:00

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)