From d8047dfe459f60631c81d5ce438af45f92919333 Mon Sep 17 00:00:00 2001 From: Brandon Simmons Date: Thu, 25 Mar 2021 15:06:26 -0400 Subject: [PATCH] Add debian build instructions to README closes #9 --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 762dd7886..dc8fbcec9 100644 --- a/README.md +++ b/README.md @@ -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 +```