CamiTK, VTK etc

Un petit article pour installer CamiTK.

ça commence par compiler la bonne version de VTK, apparemment, c’est la 7.1.1 avec la bonne version de Qt.

On peut utiliser Homebrew pour obtenir Qt 5 :

brew install qt5

puis configurer la compilation de VTK avec le bon Qt5_DIR :

cmake .. -DBUILD_TESTING=false -DVTK_Group_Qt=off -DModule_vtkGUISupportQt=on -DModule_vtkGUISupportQtOpenGL=on -DVTK_QT_VERSION=5 -DQt5_DIR="/usr/local/opt/qt/lib/cmake/Qt5/" -DCMAKE_BUILD_TYPE=Release

make; make install

puis configurer CamiTK :

cmake .. -DBUILD_TESTING=false -DVTK_Group_Qt=true -DVTK_QT_VERSION=5 -DQt5_DIR="/usr/local/opt/qt5/lib/cmake/Qt5" -DCMAKE_BUILD_TYPE=Release -DVTK_DIR="/usr/local/lib/cmake/vtk-7.1/"

make; make install