Combine all the column filter related widgets
[qBittorrent.git] / INSTALL
blob296dd8a1929f5c9c7d2ba075b7c32c9d65521ea6
1 qBittorrent - A BitTorrent client in C++ / Qt
2 ------------------------------------------
4 1) Install these dependencies:
6   - Boost >= 1.71
8   - libtorrent-rasterbar 1.2.18 - 1.2.x || 2.0.8 - 2.0.x
9       * By Arvid Norberg, https://www.libtorrent.org/
10       * Be careful: another library (the one used by rTorrent) uses a similar name
12   - OpenSSL >= 1.1.1
14   - Qt 5.15.2 - 5.x || 6.2.0 - 6.x
16   - zlib >= 1.2.11
18   - pkg-config *
19       * Compile-time only on *nix systems
21   - Python >= 3.5.0
22       * Optional, run-time only
23       * Used by the bundled search engine
25 Dependency version numbers are bumped every once in a while to keep the range of properly tested configurations manageable, even if not strictly required to build.
26 You may be able to build with older versions of (some of) the dependencies other than the minimum versions specified in the build scripts, but support for such builds is not provided - you are on your own.
27 Please ensure you are building with an officially supported configuration when reporting bugs.
29 2a) Compile and install qBittorrent with Qt graphical interface
31   $ ./configure
32   $ make && make install
33   $ qbittorrent
35   will install and execute qBittorrent.
37 2b) Compile and install qBittorrent without Qt graphical interface
39   $ ./configure --disable-gui
40   $ make && make install
41   $ qbittorrent-nox
43   will install and execute qBittorrent.
45 DOCUMENTATION:
46 Please note that there is a "Compilation" section at http://wiki.qbittorrent.org.
48 ------------------------------------------
49 sledgehammer999 <sledgehammer999@qbittorrent.org>