Building VTK on Kubuntu
I got an errro running CMake to bulding VTK on Kubuntu:
CMake Error: …
Please set the following variables:
OPENGL_INCLUDE_DIR
OPENGL_gl_LIBRARY
Installing the package freeglut3-dev solved the problem:
apt-get install freeglut3-dev
Running make I got the next error:
error: X11/StringDefs.h: No such file or directory
Installing the package libxt-dev solved the problem:
apt-get install libxt-dev
Comments Off on Building VTK on Kubuntu