summaryrefslogtreecommitdiff
path: root/lib/Debian/Debhelper/Buildsystem/qmake_qt4.pm
blob: ac7ce98ab3d99234b45b938b7507f00931c3d398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package Debian::Debhelper::Buildsystem::qmake_qt4;

use strict;
use warnings;
use parent qw(Debian::Debhelper::Buildsystem::qmake);

sub DESCRIPTION {
	"qmake for QT 4 (*.pro)";
}

sub configure {
	my $this=shift;
	$Debian::Debhelper::Buildsystem::qmake::qmake="qmake-qt4";
	$this->SUPER::configure(@_);
}

1