Hi,
I am trying to compile a piece of code taken from github, that requires opencv header files. During compilation I got stuck. In the terminal I find fatal error: ippversion.h: No such file or directory. The same happens for
ipp.h`. Following relevant part from my CMake Lists,txt.
include_directories (include ${EIGEN_INCLUDE_DIRS} ${PCL_INCLUDE_DIRS} ${OCTOMAP_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS})
Set(OpenCV_DIR /home/anindya/opencv/build)
find_package(OpenCV REQUIRED COMPONENTS core)
include_directories (include ${OpenCV_INCLUDE_DIRS})
add_library(${PROJECT_NAME}
include/precomp.hpp)
The precomp.hpp
contains private.hpp
. ippversion.h
and ipp.h
are included with in private.hpp
.
I do not understand why the compiler cannot find these files where as some other files within a shallow directory in opencv is found.
Expecting some help.