A few deprecations eradicated involving QCheckBox.
[kdenetwork.git] / INSTALL
blob43f18bc9996ac2489a3cb85530cdefd6085a4e51
1 Basic Installation
2 ==================
4         KDE uses the cmake build system. The simple instructions for
5 building kdenetwork are these commands:
7                         mkdir ../kdenetwork-build && cd ../kdenetwork-build
8                         cmake ../kdenetwork
9                         make
10                         make install
12         This will not work unless necessary prerequisites are met. These are,
13 in the order they should be built:
15                         kdesupport
16                         kdelibs
17                         kdepimlibs
18                         kdebase
20         Various components of kdenetwork and the KDE modules listed above have
21 other dependencies as well. If these are not met when the 'cmake' command is
22 run, those components will not be built. The output of 'cmake' should make it
23 clear what these dependencies are and how to meet them.
25         Arguments can be given to cmake similar to those given to a traditional
26 configure script, like the install prefix. See 'cmake --help-full' for more
27 information. For example, 'configure --prefix=/usr/lib' translates to
28 'cmake -DCMAKE_INSTALL_PREFIX=/usr/lib'.