Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,16 @@ Note however that you will usually also need Qt 5 to be installed and indicate t
```
CMAKE_PREFIX_PATH=/example/path/to/Qt/5.14.2/gcc_64/ cmake -B build && cmake --build build --parallel
```

### Debian Bullseye

On Debian Bullseye the required dependencies can be installed with:
```
sudo apt install libqt5svg5-dev qtdeclarative5-dev qtbase5-dev \
qml-module-qtquick-layouts qml-module-qt-labs-platform qml-module-qtquick-controls qml-module-qtquick-dialogs \
qml-module-qtquick-controls2 qml-module-qtquick-shapes
```
Then build as above, with:
```
cmake -B build && cmake --build build --parallel
```