mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
FindPython: Fix NumPy component include directory
Update the component added by commit 513e77550d (FindPython: Introduce
NumPy component, 2018-12-12, v3.14.0-rc1~95^2). The `numpy/`
sub-directory should not be part of the include directory. It should be
part of the `#include` line.
This commit is contained in:
@@ -1140,9 +1140,8 @@ if ("NumPy" IN_LIST ${_PYTHON_PREFIX}_FIND_COMPONENTS AND ${_PYTHON_PREFIX}_Inte
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
if (NOT _${_PYTHON_PREFIX}_RESULT)
|
||||
find_path(${_PYTHON_PREFIX}_NumPy_INCLUDE_DIR
|
||||
NAMES arrayobject.h numpyconfig.h
|
||||
NAMES "numpy/arrayobject.h" "numpy/numpyconfig.h"
|
||||
HINTS "${_${_PYTHON_PREFIX}_NumPy_PATH}"
|
||||
PATH_SUFFIXES numpy
|
||||
NO_DEFAULT_PATH)
|
||||
endif()
|
||||
if(${_PYTHON_PREFIX}_NumPy_INCLUDE_DIR)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "Python.h"
|
||||
|
||||
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
|
||||
#include "arrayobject.h"
|
||||
#include "numpy/arrayobject.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user