aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorSkye Deving <76892045+skyedeving@users.noreply.github.com>2021-01-06 00:48:39 -0600
committerSkye Deving <76892045+skyedeving@users.noreply.github.com>2021-01-28 11:05:42 -0600
commit8da71b651037c3572a1c799341af964636b9acbb (patch)
tree6270e81444cfadc5bf75f3084296137f64c80f4b /.github/workflows
parentbe0fa26e85de1edaa5c7e0e68d62d9f59f854753 (diff)
Install QtApng dependency
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cmake.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index da2ae56f..5f3d362f 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -45,6 +45,13 @@ jobs:
- name: Install Qt5
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
# 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