VTK/Building/Linux: Difference between revisions

From KitwarePublic
< VTK‎ | Building
Jump to navigationJump to search
(Replaced content with "This page is obsolete, use [https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/dev/build.md build.md] instead.")
Tag: Replaced
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Download ==
This page is obsolete, use [https://gitlab.kitware.com/vtk/vtk/-/blob/master/Documentation/dev/build.md build.md] instead.
Download the source code  from the [http://www.vtk.org/VTK/resources/software.html VTK Download page] or [[VTK/Git | Clone with Git]]
git clone git://vtk.org/VTK.git VTK
 
== Configure ==
mkdir VTK-build
cd VTK-build
ccmake ../VTK
 
Set any options you would like using the curses interface.  Alternatively, set the options at the command line.
 
mkdir VTK-Release-build
cd VTK-Release-build
cmake -DCMAKE_BUILD_TYPE:STRING=Release /path/to/VTK
 
== Build ==
make

Latest revision as of 18:38, 25 August 2021

This page is obsolete, use build.md instead.