ITK/Release 4/Wrapping/WrapITK Installation: Difference between revisions

From KitwarePublic
< ITK‎ | Release 4‎ | Wrapping
Jump to navigationJump to search
Line 3: Line 3:
= Required tools =
= Required tools =


* Xcode version 3.x (& not 4.x) from developer.apple.com
* Xcode version 3.x from developer.apple.com
* Swig for Mac OS X [the default  version would work just fine. Macports version of swig may cause problem]
* Swig for Mac OS X [the default  version would work just fine. Macports version of swig may cause problem]
* CMake from http://www.cmake.org/
* CMake from http://www.cmake.org/
* Git http://www.itk.org/Wiki/Git/Download
* Doxygen from http://www.doxygen.org/
* Git http://www.itk.org/Wiki/Git/Download/


= Download ITK =
= Download ITK =

Revision as of 18:24, 11 March 2011

WrapITK Installation Steps for WrapITK installation on Mac OS X Snow Leopard:

Required tools

Download ITK

Download ITK source from the git page from http://www.vtk.org/Wiki/ITK/Git/Download Make sure you checkout the Master branch using git checkout master instead of any other tag. The output directory ITK would contain the source code.

Build ITK

Create a new directory for ITK binaries and run cmake from command line or GUI to build the ITK source.

mkdir build

cd build

ccmake ..

Make sure of enabling the configuration options USE_WRAP_ITK, ITK_USE_REVIEW, WRAP_ITK_PYTHON, WRAP_ITK_JAVA, and BUILD_SHARED_LIBS in the configuration.

make

ITK/build directory would contain the binaries.

Experimental build

To create the experimental build, run the command:

ctest -D Experimental