KDevelop4/Manual/Appendix A: Building KDevelop from Sources: Difference between revisions

From KDE UserBase Wiki
m (add category)
No edit summary
Line 1: Line 1:
If you want to have the latest features and bugfixes, you can build KDevelop yourself from the sources.
<languages />
<translate>
 
== Building KDevelop from Sources ==
 
If you want to have the latest features and bugfixes, you can build '''KDevelop''' yourself from the sources.


There exists a more in-detail article [http://techbase.kde.org/KDevelop4/HowToCompile here].
There exists a more in-detail article [http://techbase.kde.org/KDevelop4/HowToCompile here].
Line 6: Line 11:


== Requirements ==
== Requirements ==
* kdelibs-devel >= 4.3 &ndash; http://www.kde.org
 
* qt-devel >= 4.5.2 &ndash; http://qt.nokia.com
* kdelibs-devel >= 4.3 - http://www.kde.org
* boost-devel >= 1.35 &ndash; http://www.boost.org
* qt-devel >= 4.5.2 - http://qt.nokia.com
* g++ >= 4.0 &ndash; http://gcc.gnu.org
* boost-devel >= 1.35 - http://www.boost.org
* CMake >= 2.6.2 &ndash; http://www.cmake.org
* g++ >= 4.0 - http://gcc.gnu.org
* CMake >= 2.6.2 - http://www.cmake.org
* qjson-devel
* qjson-devel


== Install for all users ==
== Install for all users ==
{{Input|1=
{{Input|1=
mkdir kdevgit
mkdir kdevgit
Line 35: Line 42:


== Install for local user ==
== Install for local user ==
{{Input|1=
{{Input|1=
mkdir kdevgit
mkdir kdevgit
Line 63: Line 71:


[[Category:Development]]
[[Category:Development]]
[[Category:Advanced_Users]]
</translate>

Revision as of 14:38, 18 May 2011

Other languages:

Building KDevelop from Sources

If you want to have the latest features and bugfixes, you can build KDevelop yourself from the sources.

There exists a more in-detail article here.

Be aware that you could build an unstable version. To help the developers fix bugs, please keep the RelWithDebInfo and report bugs to http://bugs.kde.org, either per hand or using Dr. Konqi.

Requirements

Install for all users

mkdir kdevgit
cd kdevgit
git clone git://anongit.kde.org/kdevplatform
git clone git://anongit.kde.org/kdevelop
cd kdevplatform
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
make && sudo make install
kbuildsycoca4
cd ../..
cd kdevelop
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
make && sudo make install
kbuildsycoca4

Install for local user

mkdir kdevgit
cd kdevgit
git clone git://anongit.kde.org/kdevplatform
git clone git://anongit.kde.org/kdevelop
cd kdevplatform
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=$HOME/kdevelop4 ..
make && make install
# the following line is needed so that kbuildsycoca4 finds all .desktop files
export KDEDIRS=$HOME/kdevelop4:/usr
kbuildsycoca4
cd ../..
cd kdevelop
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=$HOME/kdevelop4 ..
make && make install
kbuildsycoca4

Please note: Whenever you do some package or distribution update that calls kbuildsycoca4, you need to execute the following lines after the update:

export KDEDIRS=$HOME/kdevelop4:/usr
kbuildsycoca4