Warning, /frameworks/kparts/templates/kpartsapp/README is written in an unsupported language. File is not indexed.

0001 How To Build This Project
0002 -=-=-=-=-=-=-=-=-=-=-=-=-=
0003 
0004 --- On Unix:
0005 
0006 cd %{dest}
0007 mkdir build
0008 cd build
0009 cmake -DCMAKE_INSTALL_PREFIX=$PROJECTINSTALLDIR -DCMAKE_BUILD_TYPE=Debug ..      <- do not forget the ..
0010 make
0011 make install or su -c 'make install'
0012 
0013 where $PROJECTINSTALLDIR points to your installation prefix.
0014 
0015 to uninstall the project:
0016 make uninstall or su -c 'make uninstall'
0017 
0018 Note: you can use another build path. Then cd in your build dir and:
0019 export KDE_SRC=path_to_your_src
0020 cmake $KDE_SRC -DCMAKE_INSTALL_PREFIX=$PROJECTINSTALLDIR -DCMAKE_BUILD_TYPE=Debug
0021 
0022 --- On Windows:
0023 
0024 cd %{dest}
0025 mkdir build
0026 cd build
0027 cmake -DCMAKE_INSTALL_PREFIX=%PROJECTINSTALLDIR% -DCMAKE_BUILD_TYPE=Debug ..      <- do not forget the ..
0028 [n]make
0029 [n]make install
0030 
0031 where %PROJECTINSTALLDIR% points to your installation prefix.
0032 
0033 to uninstall the project:
0034 [n]make uninstall
0035 
0036 Note: use nmake if you're building with the Visual Studio compiler, or make
0037 if you're using the minGW compiler
0038 
0039 
0040 Tutorials
0041 -=-=-=-=-
0042 KParts docs
0043 https://techbase.kde.org/Development/Architecture/KDE4/KParts
0044 https://api.kde.org/frameworks/kparts/html/index.html
0045 Tutorial
0046 https://techbase.kde.org/Development/Tutorials/Using_KParts