Go to file
Ulrich Van Den Hekke ca3cacf7e8 change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
doc Start migration to KDE 4 : The program compile 2011-08-11 23:31:05 +02:00
icons change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
src change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
.hgignore Start migration to KDE 4 : The program compile 2011-08-11 23:31:05 +02:00
AUTHORS Intialisation du projet 2007-08-11 16:23:47 +00:00
CMakeLists.txt change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
COPYING Intialisation du projet 2007-08-11 16:23:47 +00:00
ChangeLog Intialisation du projet 2007-08-11 16:23:47 +00:00
Doxyfile Intialisation du projet 2007-08-11 16:23:47 +00:00
INSTALL Intialisation du projet 2007-08-11 16:23:47 +00:00
README Start migration to KDE 4 : The program compile 2011-08-11 23:31:05 +02:00
drive_harddisk.svgz change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
drive_harddrive_sync.svgz change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
drive_harddrive_warning.svgz change icons (remove bar*.png icons, replaced by progress bar) 2011-09-24 14:30:14 +02:00
kapp4.png Start migration to KDE 4 : The program compile 2011-08-11 23:31:05 +02:00

README

How To Build This Template
-=-=-=-=-=-=-=-=-=-=-=-=-=

--- On Unix:

cd <project_name_path>
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug ..      <- do not forget the ..
make
make install or su -c 'make install'

where $KDEDIRS points to your KDE installation prefix.

to uninstall the project:
make uninstall or su -c 'make uninstall'

Note: you can use another build path. Then cd in your build dir and:
export KDE_SRC=path_to_your_src
cmake $KDE_SRC -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug

--- On Windows:

cd <project_name_path>
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%KDEDIRS% -DCMAKE_BUILD_TYPE=Debug ..      <- do not forget the ..
[n]make
[n]make install

where %KDEDIRS% points to your KDE installation prefix.

to uninstall the project:
[n]make uninstall

Note: use nmake if you're building with the Visual Studio compiler, or make
if you're using the minGW compiler

----------------------------
Please send all comments to:
Anne-Marie Mahfouf
annma@kde.org

Last update: July 2009