From 52b440884696cea95bc0fa05ffe590baa54eaac9 Mon Sep 17 00:00:00 2001 From: Tanel Metsar Date: Wed, 15 Jan 2025 13:24:11 +0000 Subject: [PATCH] Update instructions for Ubuntu dependencies Signed-off-by: Tanel Metsar --- README.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8c795ab2..58563e7b 100644 --- a/README.md +++ b/README.md @@ -259,10 +259,24 @@ You can examine the files in the `.github/workflows/` directory to see how conti ### Ubuntu Linux -Run all commands starting from `RUN apt-get update` from the following -`Dockerfile`: - -https://github.com/mrts/docker-qt-cmake-gtest-valgrind-ubuntu/blob/master/Dockerfile +Install the dependencies required for building the project. + +```sh +sudo apt update +sudo apt install \ + cmake \ + build-essential \ + qt6-base-dev \ + qt6-tools-dev \ + qt6-l10n-tools \ + qt6-tools-dev-tools \ + libqt6svg6-dev \ + libglu1-mesa-dev \ + libssl-dev \ + pkg-config \ + libpcsclite-dev \ + libgtest-dev +``` ### Windows