forked from euroelessar/qutim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
20 lines (16 loc) · 838 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Basic Installation
==================
qutIM uses the cmake build system. The simple instructions for
building qutIM are these commands:
mkdir ../qutim-build && cd ../qutim-build
cmake ../qutim
make
make install
Various components of qutIM have other dependencies as well.
If these are not met when the 'cmake' command is run, those components
will not be built. The output of 'cmake' should make it clear what these
dependencies are and how to meet them.
Arguments can be given to cmake similar to those given to a traditional
configure script, like the install prefix. See 'cmake --help-full' for more
information. For example, 'configure --prefix=/usr/lib' translates to
'cmake -DCMAKE_INSTALL_PREFIX=/usr/lib'.