Commit e44e56fa by Wenzel Jakob

consider pybind11 include directory before python

This is needed in case an older pybind11 version was installed with pip
parent e7074970
......@@ -84,12 +84,12 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR "${CMAKE_CXX_COMPILER_ID}"
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
endif()
# Include path for Python header files
include_directories(${PYTHON_INCLUDE_DIR})
# Include path for pybind11 header files
include_directories(include)
# Include path for Python header files
include_directories(${PYTHON_INCLUDE_DIR})
set(PYBIND11_HEADERS
include/pybind11/attr.h
include/pybind11/cast.h
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment