Skip to content

Commit

Permalink
docs: Describe libraries for QT6
Browse files Browse the repository at this point in the history
  • Loading branch information
pktiuk committed Apr 19, 2024
1 parent 5759e8b commit 569c3b8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Most of these packages are already built and available on [Release Page](https:/
- [Building AntiMicroX](#building-antimicrox)
- [Build Dependencies](#build-dependencies)
- [Basic building](#basic-building)
- [MSVC building tips](#msvc-building-tips)
- [MSVC building tips](#msvc-building-tips)
- [Build Options for CMake](#build-options-for-cmake)
- [Universal Options](#universal-options)
- [Linux Options](#linux-options)
Expand All @@ -24,7 +24,9 @@ installed on your system in order to build this program:
- `g++` from `gcc` (or clang compiler)
- `cmake`
- `extra-cmake-modules`
- `qttools5-dev` and `qttools5-dev-tools` (`qt5-tools` on distros based on Arch Linux) (Qt5 support)
- QT libraries:
- For QT5: `qttools5-dev` and `qttools5-dev-tools` (`qt5-tools` on distros based on Arch Linux)
- For QT6: `qt6-base-dev`, `qt6-tools-dev-tools` `libqt6core5compat6-dev`
- `libsdl2-dev` (`sdl2` on distros based on Arch Linux) (SDL2)
- `libxi-dev` (`libxi` on distros based on Arch Linux) (Optional. Needed to compile with X11 and uinput support)
- `libxtst-dev` (`libxtst` on distros based on Arch Linux) (Optional. Needed to compile with XTest support)
Expand Down Expand Up @@ -52,6 +54,12 @@ One-liner for installing above dependencies:
sudo apt install g++ cmake extra-cmake-modules qttools5-dev qttools5-dev-tools libsdl2-dev libxi-dev libxtst-dev libx11-dev itstool gettext ninja-build
```



```bash
sudo apt install g++ cmake extra-cmake-modules qt6-base-dev qt6-tools-dev-tools libqt6core5compat6-dev libsdl2-dev libxi-dev libxtst-dev libx11-dev itstool gettext ninja-build
```

</details>

<details>
Expand Down

0 comments on commit 569c3b8

Please sign in to comment.