I\'m trying to get PCL 1.7 (The point cloud library, not the other pcl) working on Ubuntu 16.04. I eventually hope to use for C++ stuff, but right now I\'m just trying to get th
This bug is still in 16.04, but there is a workaround.
sudo apt install libproj-dev
add the following line to your CMakeLists.txt file:
list(REMOVE_ITEM PCL_LIBRARIES "vtkproj4")
The first provides the necessary libproj.so
, and the second fixes errors when linking against a nonexistent (and unnecessary) libvtkproj4.
The other errors about referenced files not existing appear to be harmless (or at least my project compiles despite having the same errors).
for more information, see:
https://bugs.launchpad.net/ubuntu/+source/pcl/+bug/1573174
https://bugs.launchpad.net/ubuntu/+source/vtk6/+bug/1573234