Update INSTALL.md with new dependencies.

This commit is contained in:
Andrius Štikonas 2019-02-16 11:49:51 +00:00
parent f5b5728c7f
commit 594c90f4ba
Signed by: andrius
GPG Key ID: E2E5CD054CB9CD3E
1 changed files with 4 additions and 4 deletions

View File

@ -3,20 +3,20 @@ Building and installing KDE Partition Manager Core Library from source
## Dependencies ## Dependencies
* [util-linux](https://github.com/karelzak/util-linux) 2.32 * [util-linux](https://github.com/karelzak/util-linux) 2.34
* [Qt](https://www.qt.io/) 5.10 * [Qt](https://www.qt.io/) 5.10
* QCA * QCA
* Tier 2 [KDE Frameworks](https://www.kde.org/products/frameworks/) 5.25 * Tier 2 [KDE Frameworks](https://www.kde.org/products/frameworks/) 5.56
## Configure ## Configure
KPMcore is built with [cmake](https://cmake.org/). It is recommended to build out of tree: KPMcore is built with [cmake](https://cmake.org/). It is recommended to build out of tree:
After unpacking the source, create a separate build directory and run cmake there: After unpacking the source, create a separate build directory and run cmake there:
``` ```bash
$ tar xf kpmcore-x.y.z.tar.xz $ tar xf kpmcore-x.y.z.tar.xz
$ cd kpmcore-x.y.z $ cd kpmcore-x.y.z
$ mkdir build $ mkdir build
@ -35,7 +35,7 @@ configure a different install path by passing
`-DCMAKE_INSTALL_PREFIX=<your_path>` to cmake when configuring. To change the `-DCMAKE_INSTALL_PREFIX=<your_path>` to cmake when configuring. To change the
install path after configuring and building, run install path after configuring and building, run
``` ```bash
$ ccmake . $ ccmake .
``` ```