Install QtApng dependency

This commit is contained in:
Skye Deving 2021-01-06 00:48:39 -06:00
parent be0fa26e85
commit 8da71b6510

View File

@ -45,6 +45,13 @@ jobs:
- name: Install Qt5 - name: Install Qt5
run: sudo apt update -y && sudo apt install -y qt5-default run: sudo apt update -y && sudo apt install -y qt5-default
- name: Install QtApng
run: |
git clone https://github.com/Skycoder42/QtApng
cd QtApng
qmake
sudo make install
- name: Create Build Environment - name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory # Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands # We'll use this as our working directory for all subsequent commands