Skip to content

Commit dd6ad38

Browse files
committed
Fixed workflows.
1 parent 9c1dd2c commit dd6ad38

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: sudo apt-get update
2727

2828
- name: Install Dependencies
29-
run: sudo apt-get install clang-14 qt6-tools-dev qt6-base-dev qt6-base-dev-tools qt6-serialport-dev qt6-positioning-dev libusb-1.0-0-dev libyaml-cpp-dev librsvg2-bin
29+
run: sudo apt-get install clang-14 qt6-tools-dev qt6-base-dev qt6-base-dev-tools qt6-serialport-dev qt6-positioning-dev qt6-multimedia-dev libusb-1.0-0-dev libyaml-cpp-dev librsvg2-bin
3030

3131
- name: Configure CMake
3232
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: sudo apt-get update
2525

2626
- name: Install Dependencies
27-
run: sudo apt-get install qt6-tools-dev qt6-base-dev qt6-base-dev-tools qt6-serialport-dev qt6-positioning-dev libusb-1.0-0-dev libyaml-cpp-dev librsvg2-bin
27+
run: sudo apt-get install qt6-tools-dev qt6-base-dev qt6-base-dev-tools qt6-serialport-dev qt6-positioning-dev qt6-multimedia-dev libusb-1.0-0-dev libyaml-cpp-dev librsvg2-bin
2828

2929
- name: Configure CMake
3030
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.

BUILD.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The following dependencies are required:
1515
- `qt6-tools-dev-tools`
1616
- `qt6-positioning-dev`
1717
- `qt6-serialport-dev`
18+
- `qt6-multimedia-dev`
1819
- `libyaml-cpp-dev`
1920
- `librsvg2-bin`
2021
- `libusb-1.0-0-dev`
@@ -31,7 +32,7 @@ Equivalent packages are listed for Fedora, Arch Linux, and macOS.
3132
sudo apt update
3233
sudo apt install -y \
3334
qt6-base-dev qt6-tools-dev qt6-tools-dev-tools \
34-
qt6-positioning-dev qt6-serialport-dev \
35+
qt6-positioning-dev qt6-serialport-dev qt6-multimedia-dev \
3536
libyaml-cpp-dev librsvg2-bin libusb-1.0-0-dev \
3637
build-essential cmake git
3738
```
@@ -44,7 +45,7 @@ sudo apt install -y \
4445

4546
```sh
4647
sudo dnf install -y \
47-
qt6-qtbase-devel qt6-qttools-devel qt6-qtpositioning-devel qt6-qtserialport-devel \
48+
qt6-qtbase-devel qt6-qttools-devel qt6-qtpositioning-devel qt6-qtserialport-devel qt6-multimedia-devel\
4849
yaml-cpp-devel librsvg2-tools libusb1-devel \
4950
make gcc-c++ cmake git
5051
```
@@ -57,7 +58,7 @@ sudo dnf install -y \
5758

5859
```sh
5960
sudo pacman -S --needed \
60-
qt6-base qt6-tools qt6-positioning qt6-serialport \
61+
qt6-base qt6-tools qt6-positioning qt6-serialport qt6-multimedia \
6162
yaml-cpp librsvg libusb cmake git base-devel
6263
```
6364

0 commit comments

Comments
 (0)