KWWidgets/Projects/3DWidgets/Part2/Widgets/VTK

From KitwarePublic
Revision as of 11:43, 3 January 2007 by Xavor (talk | contribs)
Jump to navigationJump to search

Setting up

The latest CVS version of VTK may require the latest version of CMake - if your version isn't the latest, compiling VTK will likely give an error that will note the minumum required version of CMake.

  • CVS


  • CMake


Installing and Compiling

  • CMake

Installing by CMake's included instructions may not always be simple. Some downloads include installation scripts and others may be just the usable files.

If there are no scripts in the downloaded archive, you will need to copy the files to the /usr/local directory with superuser privileges.

CMake archive contents

  • VTK


CVS command 1 CVS Command 2


ccmake cmake make

In a terminal window, change to the VTK install directory.

ccmake .

In the screen shown, pressing "c" will commence the configuration. If the vtk installation directory is not in your system's path, there will be at leat one error shown - press "e" to go back to the previous screen. Here you will need to scroll down with the cursor keys to the VTK_LOCAL_PATH and press "Return" to edit the data. Here you will need to type in the vtk installation directory and press "Return". Next, press "c" to configure with the correct directory. You may need to press "c" a second time. Once configuration is complete, press "g" to generate the CMake files. Then "q" to exit.

cmake .
make

The vtk library will be built. Note, this may take a while!