Comment 2 for bug 1573234

Revision history for this message
Luke (luke-bloy) wrote :

While not a solution to the bug, as a stopgap you can remove the attempt to link to vtkproj4 from your project by removing it from the libraries you are linking too.

in your cmakelists.txt you can add

list(REMOVE_ITEM PCL_LIBRARIES "vtkproj4")

if you are using PCL, or presumably if you are using VTK directly you could add

list(REMOVE_ITEM VTK_LIBRARIES "vtkproj4")

this has allowed me to build simple PCL tutorials etc and presumably would also work with larger projects.