File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed
Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -259,10 +259,24 @@ You can examine the files in the `.github/workflows/` directory to see how conti
259259
260260### Ubuntu Linux
261261
262- Run all commands starting from ` RUN apt-get update ` from the following
263- ` Dockerfile ` :
264-
265- https://github.com/mrts/docker-qt-cmake-gtest-valgrind-ubuntu/blob/master/Dockerfile
262+ Install the dependencies required for building the project.
263+
264+ ``` sh
265+ sudo apt update
266+ sudo apt install \
267+ cmake \
268+ build-essential \
269+ qt6-base-dev \
270+ qt6-tools-dev \
271+ qt6-l10n-tools \
272+ qt6-tools-dev-tools \
273+ libqt6svg6-dev \
274+ libglu1-mesa-dev \
275+ libssl-dev \
276+ pkg-config \
277+ libpcsclite-dev \
278+ libgtest-dev
279+ ```
266280
267281### Windows
268282
You can’t perform that action at this time.
0 commit comments