RTK/Developers: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== Developer's guide == | |||
This section is aimed to assist in the development of RTK. | |||
=== Source Code === | |||
==== Download repository ==== | ==== Download repository ==== | ||
==== API ==== | The RTK source code can be retrieved from RTK's GIT repository using the following command: | ||
git clone git@github.com:SimonRit/RTK.git <sourcePath> | |||
==== Compiling ==== | |||
In order to compile RTK you need the following third party software: | |||
#[http://www.cmake.org/ CMake >= 2.4] | |||
#[http://www.itk.org/ ITK >= 3.20] | |||
#[http://www.gnu.org/software/gengetopt/gengetopt.html Gengetopt >= 2.20] | |||
* Optional: | |||
#[http://www.nvidia.com/Download/index.aspx?lang=en-us CUDA drivers] | |||
===== CMake ===== | |||
CMake is a family of tools designed to build, test and package software. | |||
You can download pre-compiled binaries and the source code [[http://www.cmake.org/cmake/resources/software.html|here]] or via git: | |||
{{{ | |||
git clone git://cmake.org/cmake.git | |||
}}} | |||
Installation instructions are available [[http://www.cmake.org/Wiki/CMake|here]]. | |||
CMake is used to build ITK, VTK and VV. | |||
To compile the code, it is used CMake. The common steps to compile for the first time your code are as follows: | |||
#Create a binary folder, called i.e. RKT-bin | |||
#Go to your binary folder | |||
=== API === | |||
=== Geometry === | |||
=== Mailing list === |
Revision as of 10:24, 2 August 2012
Developer's guide
This section is aimed to assist in the development of RTK.
Source Code
Download repository
The RTK source code can be retrieved from RTK's GIT repository using the following command:
git clone git@github.com:SimonRit/RTK.git <sourcePath>
Compiling
In order to compile RTK you need the following third party software:
#CMake >= 2.4 #ITK >= 3.20 #Gengetopt >= 2.20 * Optional: #CUDA drivers
CMake
CMake is a family of tools designed to build, test and package software.
You can download pre-compiled binaries and the source code [[1]] or via git:
{{{ git clone git://cmake.org/cmake.git }}} Installation instructions are available [[2]].
CMake is used to build ITK, VTK and VV.
To compile the code, it is used CMake. The common steps to compile for the first time your code are as follows:
#Create a binary folder, called i.e. RKT-bin #Go to your binary folder