Skip to content

Commit

Permalink
ci(ubuntu): fix build rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmcarreira committed Apr 26, 2024
1 parent 2365ae0 commit 3c695e6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ override_dh_auto_configure:
dh_auto_configure
# configure the Qt version (qmake)
mkdir $(QTBUILD)
cd $(QTBUILD) && qmake $(QMAKECONFIG) ../qtikz.pro
cd $(QTBUILD)
QT_SELECT=5 qmake $(QMAKECONFIG) ../qtikz.pro

override_dh_auto_build:
# build the KDE version (cmake)
dh_auto_build
# build the Qt version (qmake)
make -C $(QTBUILD)
QT_SELECT=5 make -C $(QTBUILD)

override_dh_auto_install:
# install the KDE version (cmake)
Expand Down

0 comments on commit 3c695e6

Please sign in to comment.