From 35a8281d5288e70051cfa92299b7501e758e3348 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Mon, 9 Jan 2017 19:28:35 +0100 Subject: [PATCH] Fix Python include dir --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d3a77ab2..d0a06a3a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,7 +194,7 @@ if (USE_PYTHON) add_definitions(-DNG_PYTHON) include_directories(${PYBIND_INCLUDE_DIR}) - include_directories(${PYTHON_INCLUDE_DIR}) + include_directories(${PYTHON_INCLUDE_DIRS}) install(DIRECTORY ${PYBIND_INCLUDE_DIR}/pybind11 DESTINATION include COMPONENT netgen_devel) install(FILES ${PYBIND_INCLUDE_DIR}/../LICENSE DESTINATION include/pybind11 COMPONENT netgen_devel)