I have successfully configured the includes and libs in order to build OpenCV and OpenNI in Eclipse under OS X. However now I need to add the PCL libraries. I tried to do it the same way but 1- there're a lot of files, 2- I get 614 errors after adding the libraries.
I have the CMakeLists.txt with which I am able to build PCL project.
find_package(PCL 1.3 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
Could I add somehow this Cmake to existing configuration of OpenCV+OpenNI which already works?