]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - README
Initial commit.
[PrivacyBrowserPC.git] / README
1 How To Build This Template
2 -=-=-=-=-=-=-=-=-=-=-=-=-=
3
4 --- On Unix:
5
6 cd <project_name_path>
7 mkdir build
8 cd build
9 cmake -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug ..
10 make
11 make install  or  su -c 'make install'  or  sudo make install
12
13 where $KDEDIRS points to your KDE installation prefix.
14
15 Note: you can use another build path. Then cd in your build dir and:
16 export KDE_SRC=path_to_your_src
17 cmake $KDE_SRC -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug