Fix no newlines warnings. Patch by Peter Oberndorfer
[kdevelopdvcssupport.git] / INSTALL
blob5d9fc446617d59648f84231aa5d37a7a8ae26250
1 Basic Installation
2 ==================
4 Create a build directory, for example:
5 mkdir build
7 Then run cmake and point it to the sources like this:
8 cmake ../
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/kde/4
15 Afterwards run:
16 make
18 And to install run:
19 make install