11) cmake based compilation:
2
3* Unpack the tarball, and change directory to traverso-xx-xx-xx
4* Make sure you have all dependencies installed, and cmake
5* run cmake as follows (including the dot!):
6
7  $ cmake .
8
9* If it complains a library was missing, make sure it is installed,
10  remove CMakeCache.txt and go back to the previous step.
11
12* If cmake . completed without error, you can either run:
13
14  $ ccmake .
15
16  to change compilation options or:
17
18  $ make
19
20  to start compilation.
21
22* After compilation finished, you can run traverso with:
23
24  $ bin/traverso
25
26* Or install it systemwide (as root)
27
28  $ make install
29
30* and run traverso directly by typing:
31
32  $ traverso
33
34
35Have fun!
36
37
38NOTE FOR PACKAGERS:
39
40See the PACKAGERS file!