Compiling ParaViewParaView uses the CMake cross-platform build system. To compile ParaView, you will have to install CMake. Binary and source distributions of CMake can be found here. If it exists for your platform, we highly recommend using a binary distribution. CMake 2.0.1 or newer is required.The complete distribution of ParaView contains VTK and Tcl/Tk 8.4.5. You do not need to download VTK or Tcl/Tk separately to compile. Once CMake is installed, you are ready to build ParaView. We highly recommend reading the documentation on running CMake if you are not familiar with this process. Here is a summary of the ParaView build:
UNIX/LinuxThe following instructions only apply to Unix/Linux systems. ParaView requires that you maintain separate source and build trees. This has the advantage of allowing more than one build with different options or on different platforms to share the same source tree. This technique is called an out-of-source build. The following example shows how to use this technique to build ParaView on multiple architectures. Assume we have a Solaris machine and an IRIX machine with a shared disk with a ParaView source tarball in the home directory. On either machine, extract the source tarball:
On the Solaris machine, run
Then on the IRIX machine, run
It is a very good idea to tell cmake what C and C++ compilers you will be using. This can prevent many build problems. On most systems you can pass this information to CMake in the following way:
otherwise you must set CXX and CC in your environment and then
run ccmake (or cmake -i ).
Please note that on some platforms, it might be necessary to use the GNU Make to compile out-of-source. This is due to the fact that the Tcl/Tk build process uses some features not available on all make distributions. WindowsThe Windows build process uses the CMake GUI CMakeSetup.
Currently there is no install support for Windows. Just run the
|