Skip to content

Commit

Permalink
Add --enable-qt5 to GitHub CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jlindgren90 committed Apr 4, 2024
1 parent b52a1dc commit 940ac0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/run-action/run-action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ case "$action" in
if [ "$build_system" = 'meson' ]; then
meson setup build -D qt5=true
else
./autogen.sh && ./configure
./autogen.sh && ./configure --enable-qt5
fi
;;

ubuntu*)
if [ "$build_system" = 'meson' ]; then
meson setup build -D qt5=true -D gtk3=true
else
./autogen.sh && ./configure --enable-gtk3
./autogen.sh && ./configure --enable-qt5 --enable-gtk3
fi
;;

Expand All @@ -50,7 +50,7 @@ case "$action" in
else
export PATH="/usr/local/opt/qt@5/bin:$PATH"
export PKG_CONFIG_PATH="/usr/local/opt/qt@5/lib/pkgconfig:$PKG_CONFIG_PATH"
./autogen.sh && ./configure --disable-gtk
./autogen.sh && ./configure --enable-qt5 --disable-gtk
fi
;;

Expand Down

0 comments on commit 940ac0b

Please sign in to comment.