An include at the top of a cpp file in my project is #include <vigra/numpy_array.hxx>
, but this fails when I try to build (cmake, c++11) because /usr/local/include/vigra/numpy_array.hxx:46:10: fatal error: 'numpy/arrayobject.h' file not found
. Any ideas what is wrong and how I can fix this? I'm aware of the related cython questions, but they're all specific to this error in a setup.py.
Additional info:
- I've installed vigra (and tested it's successful)
- I have
find_package( VIGRA REQUIRED )
in my CMakeLists.txt - Trying
make --include-dir=/usr/local/include/vigra
doesn't help