Subversion Repositories public

Rev

Rev 88 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
88 andreas 1
Basic Installation
2
==================
3
 
244 andreas 4
Create a build directory, for example:
5
mkdir build
88 andreas 6
 
244 andreas 7
Then run cmake and point it to the sources like this:
8
cmake ../
88 andreas 9
 
244 andreas 10
A useful option to specify for the cmake command is CMAKE_INSTALL_PREFIX so 
11
that you can tell cmake where to install the software. For example, to install
12
in /usr/kde/4 you would run:
13
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
88 andreas 14
 
244 andreas 15
Afterwards run:
16
make
88 andreas 17
 
244 andreas 18
And to install run:
19
make install