: other.xUbuntu users can do:
# add-apt-repository ppa:kubuntu-experimental
For the rest: Pre-compiled versions of the SDK are available at Nokia's web-site. The SDK is installed in /usl/local directory and does not affect the existing system Qt.
. git clone git://gitorious.org/qutim/qutim-meta.git
cd qutim-meta
git submodule update --init --recursive
cd ..
mkdir build
cd build
cmake ../
In order to disable certain plugins, one should look at the cmake's output and append -DPLUGIN_NAME=0 to cmake command, for each plugin to be disabled i.e. if the QT version is < 4.7 -DCONNECTIONMANAGER=0 -DQMLPOPUPS=0 -DVKONTAKTE_PHOTOALBUM=0 should be added as they require QT 4.7
cmake ../ -DCONNECTIONMANAGER=0 -DQMLPOPUPS=0 -DVKONTAKTE_PHOTOALBUM=0
make
(or open .sln in MS Visual Studio, if buildin under Windows, an press F7).
???PROFITSome options
git clone git://gitorious.org/qutim/qutim.git
cd qutim
git checkout origin/sdk02
git pull origin sdk02
cmake .
make -j3
git clone git://gitorious.org/qutim/protocols.git
cd protocols
git checkout origin/sdk02
git pull origin sdk02
git submodule update --init
Then for each protocol the following should be done:
cd _protocol_name_
cmake .
make -j3
git://gitorious.org/qutim/plugins.git
cd plugins
git checkout origin/sdk02
git pull origin sdk02
Then for each plugin the following should be done:
cd _plugin_name_
cmake .
make -j3