2018-05-25 17:08:09 +02:00
# Linux
2020-11-21 11:24:32 +01:00
Note on Qt version compatibility: If you are installing Qt from a package manager, please ensure the version you are installing is at least **Qt 5.12 or newer** .
2018-10-19 21:39:09 +02:00
2022-07-23 14:04:29 +02:00
## Install dependencies
2021-02-21 14:45:42 +01:00
2022-07-23 14:04:29 +02:00
### Ubuntu 20.04
2018-05-25 17:08:09 +02:00
2023-12-23 11:39:53 +01:00
_Most likely works the same for other Debian-like distros._
2021-03-28 16:58:51 +02:00
2023-12-23 11:39:53 +01:00
Install all the dependencies using `sudo apt install qttools5-dev qt5-image-formats-plugins libqt5svg5-dev libboost-dev libssl-dev libboost-system-dev libboost-filesystem-dev cmake g++ libsecret-1-dev`
2021-03-28 16:58:51 +02:00
2022-07-23 14:04:29 +02:00
### Arch Linux
2018-06-08 20:50:59 +02:00
2023-12-23 11:39:53 +01:00
Install all the dependencies using `sudo pacman -S --needed qt5-base qt5-imageformats qt5-svg qt5-tools boost rapidjson pkgconf openssl cmake`
2021-03-28 16:58:51 +02:00
2022-07-23 14:04:29 +02:00
Alternatively you can use the [chatterino2-git ](https://aur.archlinux.org/packages/chatterino2-git/ ) package to build and install Chatterino for you.
2021-03-28 16:58:51 +02:00
2022-07-23 14:04:29 +02:00
### Fedora 28 and above
2021-02-21 14:45:42 +01:00
2021-07-31 13:03:07 +02:00
_Most likely works the same for other Red Hat-like distros. Substitute `dnf` with `yum` ._
2021-03-28 16:58:51 +02:00
2023-12-23 11:39:53 +01:00
Install all the dependencies using `sudo dnf install qt5-qtbase-devel qt5-qtimageformats qt5-qtsvg-devel qt5-linguist libsecret-devel openssl-devel boost-devel cmake`
2021-03-28 16:58:51 +02:00
2022-07-23 14:04:29 +02:00
### NixOS 18.09+
2021-03-28 16:58:51 +02:00
2023-12-23 11:39:53 +01:00
Enter the development environment with all the dependencies: `nix-shell -p openssl boost qt5.full pkg-config cmake`
2021-02-21 14:45:42 +01:00
2022-07-23 14:04:29 +02:00
## Compile
2019-05-01 15:18:29 +02:00
2022-07-23 14:04:29 +02:00
### Through Qt Creator
2021-02-21 14:45:42 +01:00
2022-07-23 14:04:29 +02:00
1. Install C++ IDE Qt Creator by using `sudo apt install qtcreator`
1. Open `CMakeLists.txt` with Qt Creator and select build
## Manually
1. In the project directory, create a build directory and enter it
```sh
mkdir build
cd build
```
1. Generate build files
```sh
cmake ..
```
1. Build the project
```sh
make
```