]> Creatis software - cpPlugins.git/blob - install/INSTALL.txt
...
[cpPlugins.git] / install / INSTALL.txt
1
2 0. Pre-requisites
3 -----------------
4
5 cpPlugins is developed in C++11 and makes extensive use of CMake (>=3.0),
6 VTK (>=7.0) and ITK (>=4.10). Qt (=4.8) could be used at will.
7
8 In order to compile it, you will need a development environment that includes:
9
10   - A decent C++11 compiler. If you use g++ (on linux-like machines) or Xcode
11     (on Mac boxes) you should be ok. On Windows, is rather difficult (thanks
12     Microsoft?), but it is recommened to use the MinGW environment.
13   - make.
14   - git, if you want to gain access to the latest versions of every package.
15   - GLUT.
16   - whatever your compiler complains about... ;-)
17
18 A convenient shell script (cpPlugins_Install_Dependencies.sh) is distributed
19 with this notice in order to simplify the base librraries installation process.
20 You could use it to compile Qt, CMake, ITK and VTK, as long as you have
21 downloaded the compressed files of each package:
22
23   - Qt    : http://download.qt.io/official_releases/qt/4.8/4.8.7/
24   - CMake : http://www.cmake.org
25   - ITK   : http://www.itk.org
26   - VTK   : http://www.vtk.org
27
28 As an extra, this script will try to perform a draft configuration of cpPlugins
29 with the given base libraries. After this, you are on your own :-)
30
31 This script has been tested on: Ubuntu.
32
33 ## eof - $RCSfile$