0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VTKサンプルのビルド(システムのVTKを使わない場合のcmake修正)

Last updated at Posted at 2019-08-27

VTKオフィシャルサイトからは様々なexampleが公開されているわけですが、システムのVTKが古い場合

CMake Error at /usr/lib/cmake/vtk-6.3/vtkModuleAPI.cmake:120 (message):
Requested modules not available:
vtkRenderingOpenGL2

等のメッセージがでてコンパイルできません。これはDebian Strecthのvtk-6.3ではOpenGL2でのレンダリングをサポートしていないことによるエラーの例です。現行のvtkを独自でコンパイルすればこの問題は解決しますが、その場合VTKの場所などを指定する必要があります。具体的には

  • VTKディレクトリの指定

をします。vtkのexample配布物の中で、CMakeLists.txt内で find_package(VTK REQUIRED) を実行する前に

set(VTK_DIR "/my/own/vtk/path/")

VTKConfig.cmakeの含まれるディレクトリを指定します。あとは通常のcmakeビルドプロセスと同様です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?